Raymond Toy pushed to branch issue-265-ci-broken-on-mac-os at cmucl / cmucl
Commits: c6815acf by Raymond Toy at 2023-11-14T11:13:29-08:00 Add /opt/local/bin to PATH to find msgmerge and msgfmt
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -127,8 +127,9 @@ osx:build: #- bin/create-target.sh xtarget x86_darwin #- bin/create-target.sh xcross x86_darwin #- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp - # Regular build using the cross-compiled result or snapshot - - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp + # Regular build using the cross-compiled result or snapshot. + # 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
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c6815acf59127336ff979bf9...