[Git][cmucl/cmucl][master] 2 commits: Use /opt/local/bin/curl on OSX instead of /usr/bin/curl
Raymond Toy pushed to branch master at cmucl / cmucl Commits: ff391861 by Raymond Toy at 2021-10-18T04:05:13+00:00 Use /opt/local/bin/curl on OSX instead of /usr/bin/curl - - - - - b9315678 by Raymond Toy at 2021-10-18T04:05:14+00:00 Merge branch 'issue-119-ci-osx-install-fails' into 'master' Use /opt/local/bin/curl on OSX instead of /usr/bin/curl Closes #119 See merge request cmucl/cmucl!82 - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -109,7 +109,7 @@ osx:install: paths: - snapshot/ script: - - curl -s -o cmucl-$version-darwin.tar.bz2 $download_url/cmucl-$version-darwin.tar.bz2 + - /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) @@ -161,8 +161,8 @@ osx:ansi-test: - job: osx:build artifacts: true before_script: - - git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - - (cd ansi-test; git checkout rtoy-cmucl-expected-failures) + - /opt/local/bin/git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git + - (cd ansi-test; /opt/local/bin/git checkout rtoy-cmucl-expected-failures) script: - cd ansi-test - make LISP="../dist/bin/lisp -batch -noinit -nositeinit" View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/2e3b90ff9cc84de876fd993... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/2e3b90ff9cc84de876fd993... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)