Skip to content
Snippets Groups Projects
Commit ff391861 authored by Raymond Toy's avatar Raymond Toy
Browse files

Use /opt/local/bin/curl on OSX instead of /usr/bin/curl

parent 2e3b90ff
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ osx:install: ...@@ -109,7 +109,7 @@ osx:install:
paths: paths:
- snapshot/ - snapshot/
script: 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 - mkdir snapshot
- (cd snapshot; tar xjf ../cmucl-$version-darwin.tar.bz2) - (cd snapshot; tar xjf ../cmucl-$version-darwin.tar.bz2)
...@@ -161,8 +161,8 @@ osx:ansi-test: ...@@ -161,8 +161,8 @@ osx:ansi-test:
- job: osx:build - job: osx:build
artifacts: true artifacts: true
before_script: before_script:
- git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - /opt/local/bin/git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git
- (cd ansi-test; git checkout rtoy-cmucl-expected-failures) - (cd ansi-test; /opt/local/bin/git checkout rtoy-cmucl-expected-failures)
script: script:
- cd ansi-test - cd ansi-test
- make LISP="../dist/bin/lisp -batch -noinit -nositeinit" - make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment