Raymond Toy pushed to branch rtoy-issue-76-add-ansi-tests-to-ci at cmucl / cmucl
Commits: 5ed647e5 by Raymond Toy at 2019-11-03T22:55:38Z Only run ansi-test on linux
The test fails on osx because the PRINT.1 and WRITE.1 tests use random tests that fail on osx. Let's just test on linux for now.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -25,7 +25,6 @@ osx-runner: tags: - osx before_script: - - git clone https://gitlab.common-lisp.net/ansi-test/ansi-test.git - (cd ansi-test; git checkout rtoy-cmucl-expected-failures) - curl -s -o cmucl-$version-darwin.tar.bz2 $download_url/cmucl-$version-darwin.tar.bz2 - mkdir snapshot @@ -34,6 +33,3 @@ osx-runner: - bin/build.sh $bootstrap -C "" -o snapshot/bin/lisp - bin/make-dist.sh -I dist darwin-4 - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log - - cd ansi-test - - make LISP="../dist/bin/lisp -batch" - - grep 'No unexpected (successes|failures)' test.out
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/5ed647e5fa11a3e8a21e5d7e1d...