-
Notifications
You must be signed in to change notification settings - Fork 274
/
.travis.yml
78 lines (73 loc) · 1.51 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
language: c
compiler: gcc
os:
# - osx
- linux
before_install:
- mkdir -p build
- cp Example/compress/sample.txt build/sample.txt
branches:
only:
- master
jobs:
include:
- script: ./run bfs
name: bfs
- script: ./run bissearch
name: bissearch
- script: ./run bistree
name: bistree
- script: ./run bit
name: bit
- script: ./run bitree
name: bitree
- script: ./run cbc
name: cbc
- script: ./run chtbl
name: chtbl
- script: ./run clist
name: clist
- script: ./run compress
name: compress
- script: ./run cover
name: cover
- script: ./run dfs
name: dfs
- script: ./run directls
name: directls
- script: ./run dlist
name: dlist
- script: ./run encryption
name: encryption
- script: ./run geodist
name: geodist
- script: ./run geometry
name: geometry
- script: ./run graph
name: graph
- script: ./run graphalg
name: graphalg
- script: ./run heap
name: heap
- script: ./run list
name: list
- script: ./run nummeths
name: nummeths
- script: ./run ohtbl
name: ohtbl
- script: ./run page
name: page
- script: ./run pqueue
name: pqueue
- script: ./run queue
name: queue
- script: ./run routing
name: routing
- script: ./run set
name: set
- script: ./run sort
name: sort
- script: ./run spell
name: spell
- script: ./run stack
name: stack