Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
91190bf8
by Raymond Toy at 2020-08-30T01:15:52+00:00
-
69064be1
by Raymond Toy at 2020-08-30T01:15:53+00:00
1 changed file:
Changes:
| ... | ... | @@ -4,9 +4,14 @@ variables: |
| 4 | 4 |
bootstrap: ""
|
| 5 | 5 |
|
| 6 | 6 |
linux-runner:
|
| 7 |
+ artifacts:
|
|
| 8 |
+ paths:
|
|
| 9 |
+ - ansi-test/test.out
|
|
| 7 | 10 |
tags:
|
| 8 | 11 |
- linux
|
| 9 | 12 |
before_script:
|
| 13 |
+ - git clone https://gitlab.common-lisp.net/ansi-test/ansi-test.git
|
|
| 14 |
+ - (cd ansi-test; git checkout rtoy-cmucl-expected-failures)
|
|
| 10 | 15 |
- wget -nv $download_url/cmucl-$version-linux.tar.bz2
|
| 11 | 16 |
- wget -nv $download_url/cmucl-$version-linux.extra.tar.bz2
|
| 12 | 17 |
- mkdir snapshot
|
| ... | ... | @@ -15,11 +20,19 @@ linux-runner: |
| 15 | 20 |
- bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
|
| 16 | 21 |
- bin/make-dist.sh -I dist linux-4
|
| 17 | 22 |
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
| 23 |
+ - cd ansi-test
|
|
| 24 |
+ - make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
|
|
| 25 |
+ - grep 'No unexpected \(successes\|failures\)' test.out
|
|
| 18 | 26 |
|
| 19 | 27 |
osx-runner:
|
| 28 |
+ artifacts:
|
|
| 29 |
+ paths:
|
|
| 30 |
+ - ansi-test/test.out
|
|
| 20 | 31 |
tags:
|
| 21 | 32 |
- osx
|
| 22 | 33 |
before_script:
|
| 34 |
+ - git clone https://gitlab.common-lisp.net/ansi-test/ansi-test.git
|
|
| 35 |
+ - (cd ansi-test; git checkout rtoy-cmucl-expected-failures)
|
|
| 23 | 36 |
- curl -s -o cmucl-$version-darwin.tar.bz2 $download_url/cmucl-$version-darwin.tar.bz2
|
| 24 | 37 |
- mkdir snapshot
|
| 25 | 38 |
- (cd snapshot; tar xjf ../cmucl-$version-darwin.tar.bz2)
|
| ... | ... | @@ -27,3 +40,6 @@ osx-runner: |
| 27 | 40 |
- bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
|
| 28 | 41 |
- bin/make-dist.sh -I dist darwin-4
|
| 29 | 42 |
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
| 43 |
+ - cd ansi-test
|
|
| 44 |
+ - make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
|
|
| 45 |
+ - grep 'No unexpected \(successes\|failures\)' test.out
|