Raymond Toy pushed to branch rtoy-rework-ci at cmucl / cmucl
Commits:
-
c7a93905
by Raymond Toy at 2017-11-04T09:33:20-07:00
1 changed file:
Changes:
1 |
-linux-setup:
|
|
1 |
+stages:
|
|
2 |
+ - setup
|
|
3 |
+ - build
|
|
4 |
+ - test
|
|
5 |
+ |
|
6 |
+setup:
|
|
2 | 7 |
tags:
|
3 | 8 |
- linux
|
4 | 9 |
script:
|
... | ... | @@ -8,10 +13,14 @@ linux-setup: |
8 | 13 |
- mkdir snapshot
|
9 | 14 |
- (cd snapshot; tar xjf ../cmucl-2017-10-x86-linux.tar.bz2; tar xjf ../cmucl-2017-10-x86-linux.extra.tar.bz2)
|
10 | 15 |
|
11 |
-test:
|
|
16 |
+build:
|
|
12 | 17 |
tags:
|
13 | 18 |
- linux
|
14 | 19 |
script:
|
15 | 20 |
- bin/build.sh -B boot-21c -C "" -o ./snapshot/bin/lisp
|
16 |
- - bin/make-dist.sh -I dist-linux linux-4
|
|
17 |
- - bin/run-tests.sh -l dist-linux/bin/lisp 2>&1 | tee test.log
|
|
\ No newline at end of file | ||
21 |
+ - bin/make-dist.sh -I dist linux-4
|
|
22 |
+ |
|
23 |
+test:
|
|
24 |
+ script:
|
|
25 |
+ - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
|
26 |
+ |