Skip to content

Commit 1342df6

Browse files
committed
test: try add travis
1 parent af06c47 commit 1342df6

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

.travis.yml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
language: c
2+
3+
compiler: gcc
4+
5+
os:
6+
# - osx
7+
- linux
8+
9+
before_install:
10+
- mkdir -p build
11+
- cp Example/compress/sample.txt build/sample.txt
12+
13+
branches:
14+
only:
15+
- master
16+
17+
jobs:
18+
include:
19+
- stage: bfs
20+
script: ./run bfs
21+
- stage: bissearch
22+
script: ./run bissearch
23+
- stage: bistree
24+
script: ./run bistree
25+
- stage: bit
26+
script: ./run bit
27+
- stage: bitree
28+
script: ./run bitree
29+
- stage: cbc
30+
script: ./run cbc
31+
- stage: chtbl
32+
script: ./run chtbl
33+
- stage: clist
34+
script: ./run clist
35+
- stage: compress
36+
script: ./run compress
37+
- stage: cover
38+
script: ./run cover
39+
- stage: dfs
40+
script: ./run dfs
41+
- stage: directls
42+
script: ./run directls
43+
- stage: dlist
44+
script: ./run dlist
45+
- stage: encryption
46+
script: ./run encryption
47+
- stage: geodist
48+
script: ./run geodist
49+
- stage: geometry
50+
script: ./run geometry
51+
- stage: graph
52+
script: ./run graph
53+
- stage: graphalg
54+
script: ./run graphalg
55+
- stage: heap
56+
script: ./run heap
57+
- stage: list
58+
script: ./run list
59+
- stage: nummeths
60+
script: ./run nummeths
61+
- stage: ohtbl
62+
script: ./run ohtbl
63+
- stage: page
64+
script: ./run page
65+
- stage: pqueue
66+
script: ./run pqueue
67+
- stage: queue
68+
script: ./run queue
69+
- stage: routing
70+
script: ./run routing
71+
- stage: set
72+
script: ./run set
73+
- stage: sort
74+
script: ./run sort
75+
- stage: spell
76+
script: ./run spell
77+
- stage: stack
78+
script: ./run stack

0 commit comments

Comments
 (0)