Raymond Toy pushed to branch master at cmucl / cmucl
Commits: d7d41812 by Raymond Toy at 2024-06-12T12:42:57-07:00 Change Mac runner to be macos-virtualbox instead of osx
- - - - - 7e770201 by Raymond Toy at 2024-07-05T14:56:56-07:00 Some debugging to find gitlab-runner on osx.
The runner is needed to save artifacts.
- - - - - 5dc771cd by Raymond Toy at 2024-07-05T19:06:42-07:00 More debugging to find gitlab-runner on osx.
What's in /usr/local/bin?
- - - - - 5bef7425 by Raymond Toy at 2024-07-05T19:14:31-07:00 List /usr/local/bin directory first
- - - - - bf1475ce by Raymond Toy at 2024-07-07T05:46:01-07:00 Merge branch 'rtoy-test-macos-vb-runner'
MacOS VirtualBox runner is working.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -103,7 +103,7 @@ linux:benchmark: osx:install: stage: install tags: - - osx + - macos-virtualbox artifacts: paths: - snapshot/ @@ -111,11 +111,14 @@ osx:install: - /opt/local/bin/curl -o cmucl-$version-darwin.tar.bz2 $download_url/cmucl-$version-darwin.tar.bz2 - mkdir snapshot - (cd snapshot; tar xjf ../cmucl-$version-darwin.tar.bz2) + - echo PATH = $PATH + - ls -F /usr/local/bin + - type -all gitlab-runner
osx:build: stage: build tags: - - osx + - macos-virtualbox artifacts: paths: - dist/ @@ -140,7 +143,7 @@ osx:build: osx:test: stage: test tags: - - osx + - macos-virtualbox artifacts: paths: - ansi-test/test.out @@ -156,7 +159,7 @@ osx:test: osx:ansi-test: stage: ansi-test tags: - - osx + - macos-virtualbox artifacts: paths: - ansi-test/test.out @@ -173,7 +176,7 @@ osx:ansi-test: osx:benchmark: stage: benchmark tags: - - osx + - macos-virtualbox artifacts: paths: - benchmarks/cl-bench/results
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/d48a581336aa5b2441b9551...