Raymond Toy pushed to branch issue-265-ci-broken-on-mac-os at cmucl / cmucl
Commits: 6e9732d5 by Raymond Toy at 2023-11-14T14:10:46-08:00 Clean up unneeded script and add comment
Don't need the ls commands anymore.
Add comment about ansi-test failures because we can't clone the ansi-test repo. Provide a work-around for that issue for now.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -131,7 +131,6 @@ osx:build: # Need /opt/local/bin to get msgmerge and msgfmt programs. - PATH=/opt/local/bin:$PATH bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp - bin/make-dist.sh -I dist darwin-4 - - ls dist/lib/cmucl/lib/locale/en@piglatin/LC_MESSAGES
osx:test: stage: test @@ -147,7 +146,6 @@ osx:test: artifacts: true script: - echo LANG = $LANG - - ls dist/lib/cmucl/lib/locale/en@piglatin/LC_MESSAGES - bin/run-unit-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
osx:ansi-test: @@ -162,6 +160,9 @@ osx:ansi-test: - job: osx:build artifacts: true script: + # NB: sometimes we can't clone the ansi-test repo (bad cert!?!). + # Manually cloning it in the gitlab build dir helps with this + # issue until we can figure out what's going on. - bin/run-ansi-tests.sh -l dist/bin/lisp
osx:benchmark:
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/6e9732d5dd669a309fcf6e3e...