Raymond Toy pushed to branch rtoy-add-opensuse-runner at cmucl / cmucl
Commits: 0b5e55e9 by Raymond Toy at 2024-08-05T09:20:42-07:00 Add test stages for OpenSUSE
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -299,3 +299,32 @@ opensuse:build: # describe return something that make-dist.sh doesn't like. - bin/make-dist.sh -V `git describe --dirty` -I dist linux-4
+opensuse:test: + stage: test + tags: + - linux + artifacts: + paths: + - ansi-test/test.out + - test.log + needs: + # Needs artifacts from build (dist/) + - job: opensuse:build + artifacts: true + script: + - bin/run-unit-tests.sh -l dist/bin/lisp 2>&1 | tee test.log + +opensuse:ansi-test: + stage: ansi-test + tags: + - linux + artifacts: + paths: + - ansi-test/test.out + needs: + # Needs artifacts from build (dist/) + - job: opensuse:build + artifacts: true + script: + - bin/run-ansi-tests.sh -l dist/bin/lisp +
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/0b5e55e9d3195c8d93020bbb...