Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 4bb76458 by Raymond Toy at 2017-11-04T09:21:05-07:00 Set tag for linux
These commands currently only work on linux. Set a tag to see if this works to enable the linux runner.
- - - - - 087c0b7c by Raymond Toy at 2017-11-04T09:26:51-07:00 Fix syntax errors.
Validated via ci lint.
- - - - - c7a93905 by Raymond Toy at 2017-11-04T09:33:20-07:00 Set up stages
Let's see how that goes.
- - - - - 0de37607 by Raymond Toy at 2017-11-04T09:41:02-07:00 Put everything in one job with a linux tag.
- - - - - b660ef49 by Raymond Toy at 2017-11-04T14:19:22-07:00 Add osx support.
- - - - - f6d1282d by Raymond Toy at 2017-11-04T14:42:56-07:00 OSX: Download binaries and build.
- - - - - 951e9c14 by Raymond Toy at 2017-11-04T15:18:57-07:00 Run tests on osx for real
- - - - - fa6eae8e by Raymond Toy at 2017-11-04T16:24:23-07:00 Merge branch 'master' into rtoy-rework-ci
# Conflicts: # .gitlab-ci.yml
- - - - - de68cb52 by Raymond Toy at 2017-11-05T00:05:04+00:00 Merge branch 'rtoy-rework-ci' into 'master'
Update CI to support linux and osx runners
See merge request cmucl/cmucl!28 - - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,25 @@ -before_script: - - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git - - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-li... - - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-li... - - mkdir snapshot - - (cd snapshot; tar xjf ../cmucl-21c-x86-linux.tar.bz2; tar xjf ../cmucl-21c-x86-linux.extra.tar.bz2) +linux-runner: + tags: + - linux + before_script: + - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git + - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-li... + - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-li... + - mkdir snapshot + - (cd snapshot; tar xjf ../cmucl-21c-x86-linux.tar.bz2; tar xjf ../cmucl-21c-x86-linux.extra.tar.bz2) + script: + - bin/build.sh -C "" -o ./snapshot/bin/lisp + - bin/make-dist.sh -I dist linux-4 + - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
-test: +osx-runner: + tags: + - osx + before_script: + - curl -o cmucl-21c-x86-darwin.tar.bz2 https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-da... + - mkdir snapshot + - (cd snapshot; tar xjf ../cmucl-21c-x86-darwin.tar.bz2) script: - bin/build.sh -C "" -o ./snapshot/bin/lisp - - bin/make-dist.sh -I dist-linux linux-4 - - bin/run-tests.sh -l dist-linux/bin/lisp 2>&1 | tee test.log + - bin/make-dist.sh -I dist darwin-4 + - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/66bc460bc6b9f31763e06143e...
--- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/66bc460bc6b9f31763e06143e... You're receiving this email because of your account on gitlab.common-lisp.net.