forked from aaronryank/Cubically
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
33 lines (32 loc) · 1.25 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
language: c
compiler: gcc
script:
- make CFLAGS=-coverage
- ./cubically fu examples/cat.cb < examples/input.txt
- ./cubically fu examples/cubifier.cb < examples/input.txt
- ./cubically fu examples/sum.cb < examples/input-integer.txt
- ./cubically fu examples/eval.cb <<<R2L2U2D2F2B2
- ./cubically fu examples/huge.cb
- ./cubically fu examples/period.cb <<<RLUD
- ./cubically fs R2?{haha\ nope}
- ./cubically fs 'RLUDFBMESXYZ^<>_2|/=2:'
- ./cubically ThisWontWork || echo 'This is so the build succeeds'
- ./cubically fu ThisWontWork || echo 'This is so the build succeeds'
- ./cubically us R2L2U2D2F2B\' 6
- ./cubically us R2L2U2D2F2B2 0
- ./cubically us R2L2U2D2F2B2 -3
- ./cubically fcd examples/cat.cb < examples/input.txt
- ./cubically fu examples/subscripts.cb 15
- ./cubically fu examples/superscripts.cb 15
- ./cubically fu examples/depth.cb
- ./cubically fu examples/functions.cb
- ./cubically fSup examples/solve.cb
- ./cubically us '(0R):1!%5'
- ./cubically usS 'RRRRRR'
- ./cubically fu examples/slightly-useless.cb
- ./cubically usr '&' < examples/cube.txt
- ./cubically fu examples/input-arg.cb <<<3
- ./cubically fu examples/solve-1.cb <<<RLLDUBLUUUFUUFFFLUBFDD
- gcov src/*.c
after_success:
- bash <(curl -s https://codecov.io/bash)