Raymond Toy pushed to branch rtoy-refactor-ci-config at cmucl / cmucl Commits: 86e84ae7 by Raymond Toy at 2020-09-05T10:52:45-07:00 Save the dist directory Needed for the test stage. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -32,13 +32,15 @@ linux:build: stage: build tags: - linux + artifacts: + paths: + - dist/ needs: - job: linux:install artifacts: true script: - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp - bin/make-dist.sh -I dist linux-4 - - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log linux:test: stage: test @@ -48,6 +50,7 @@ linux:test: paths: - ansi-test/test.out script: + - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log - cd ansi-test - make LISP="../dist/bin/lisp -batch -noinit -nositeinit" - grep 'No unexpected \(successes\|failures\)' test.out @@ -85,6 +88,9 @@ osx:build: stage: build tags: - osx + artifacts: + paths: + - dist/ needs: - job: osx:install artifacts: true View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/86e84ae78910d110b475d2ce... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/86e84ae78910d110b475d2ce... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy