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/6e9732d5dd669a309fcf6e3…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/6e9732d5dd669a309fcf6e3…
You're receiving this email because of your account on gitlab.common-lisp.net.
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/c6815acf59127336ff979bf…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c6815acf59127336ff979bf…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch issue-265-ci-broken-on-mac-os at cmucl / cmucl
Commits:
82a16bc8 by Raymond Toy at 2023-11-14T11:02:37-08:00
Debugging: print out directory contents after make-dist
Does en@piglatin/LC_MESSAGES have the expected contents?
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -130,6 +130,7 @@ osx:build:
# Regular build using the cross-compiled result or snapshot
- 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
@@ -137,6 +138,7 @@ osx:test:
- osx
artifacts:
paths:
+ - ansi-test/test.out
- test.log
needs:
# Needs artifacts from build (dist/)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/82a16bc8579cf1418f6e4ca…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/82a16bc8579cf1418f6e4ca…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch issue-265-ci-broken-on-mac-os at cmucl / cmucl
Commits:
280d13c2 by Raymond Toy at 2023-11-14T10:14:26-08:00
Debugging: print out directory contents
Does en@piglatin/LC_MESSAGES have the expected contents?
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -144,6 +144,7 @@ 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:
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/280d13c2a337abe43c516ba…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/280d13c2a337abe43c516ba…
You're receiving this email because of your account on gitlab.common-lisp.net.