Raymond Toy pushed to branch rtoy-refactor-ci-config at cmucl / cmucl
Commits: 95678947 by Raymond Toy at 2020-09-05T11:41:11-07:00 Fix benchmark stage
We were cd'ing to the wrong directory (because we start at the root of the build).
The stage for osx:benchmark was incorrectly set to test instead of benchmark.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -73,7 +73,7 @@ linux:benchmark: artifacts: true - job: linux:build script: - - cd ../benchmarks/cl-bench + - cd benchmarks/cl-bench - mkdir tmp - CMUCL=../../snapshot/bin/lisp ./run-cmucl.sh - CMUCL=../../dist/bin/lisp ./run-cmucl.sh @@ -127,7 +127,7 @@ osx:test: - grep 'No unexpected (successes|failures)' test.out
osx:benchmark: - stage: test + stage: benchmark tags: - osx artifacts: @@ -139,7 +139,7 @@ osx:benchmark: artifacts: true - job: osx:build script: - - cd ../benchmarks/cl-bench + - cd benchmarks/cl-bench - mkdir tmp - CMUCL=../../snapshot/bin/lisp ./run-cmucl.sh - CMUCL=../../dist/bin/lisp ./run-cmucl.sh
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/956789478fdd540508f0b1ef...