[Git][cmucl/cmucl][master] 9 commits: Set tag for linux
Raymond Toy
rtoy at common-lisp.net
Sun Nov 5 00:05:06 UTC 2017
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-linux.tar.bz2
- - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-linux.extra.tar.bz2
- - 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-linux.tar.bz2
+ - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-linux.extra.tar.bz2
+ - 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-darwin.tar.bz2
+ - 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/66bc460bc6b9f31763e06143ed83bc69e4b6fbcb...de68cb52ec69ae715fcf115ac49a43cf52aa922c
---
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/66bc460bc6b9f31763e06143ed83bc69e4b6fbcb...de68cb52ec69ae715fcf115ac49a43cf52aa922c
You're receiving this email because of your account on gitlab.common-lisp.net.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20171105/99b92816/attachment-0001.html>
More information about the cmucl-cvs
mailing list