Raymond Toy pushed to branch rtoy-refactor-ci-config at cmucl / cmucl
Commits: 08bbf9f9 by Raymond Toy at 2020-09-05T11:06:32-07:00 Set up dependencies some more
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -49,6 +49,9 @@ linux:test: artifacts: paths: - ansi-test/test.out + needs: + - job: linux:build + artifacts: true script: - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log - cd ansi-test @@ -62,6 +65,9 @@ linux:benchmark: artifacts: paths: - benchmarks/cl-bench/results + needs: + - job: linux:build + artifacts: true script: - cd ../benchmarks/cl-bench - mkdir tmp @@ -105,6 +111,9 @@ osx:test: artifacts: paths: - ansi-test/test.out + needs: + - job: osx:build + artifacts: true script: - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log - cd ansi-test @@ -118,6 +127,9 @@ osx:benchmark: artifacts: paths: - benchmarks/cl-bench/results + needs: + - job: osx:build + artifacts: true script: - cd ../benchmarks/cl-bench - mkdir tmp
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/08bbf9f9b933cae2365c3f87...