... |
... |
@@ -3,15 +3,12 @@ linux-runner: |
3
|
3
|
- linux
|
4
|
4
|
before_script:
|
5
|
5
|
- apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc git
|
6
|
|
- - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-linux.tar.bz2
|
7
|
|
- - wget -nv https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-linux.extra.tar.bz2
|
|
6
|
+ - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2018/01/cmucl-2018-01-x86-linux.tar.bz2
|
|
7
|
+ - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2018/01/cmucl-2018-01-x86-linux.extra.tar.bz2
|
8
|
8
|
- mkdir snapshot
|
9
|
|
- - (cd snapshot; tar xjf ../cmucl-21c-x86-linux.tar.bz2; tar xjf ../cmucl-21c-x86-linux.extra.tar.bz2)
|
|
9
|
+ - (cd snapshot; tar xjf ../cmucl-2018-01-x86-linux.tar.bz2; tar xjf ../cmucl-2018-01-x86-linux.extra.tar.bz2)
|
10
|
10
|
script:
|
11
|
|
- - bin/create-target.sh xtarget x86_linux x86
|
12
|
|
- - bin/create-target.sh xcross x86_linux x86
|
13
|
|
- - bin/cross-build-world.sh -crl xtarget xcross src/bootfiles/21c/boot-21c-cross.lisp ./snapshot/bin/lisp
|
14
|
|
- - bin/build.sh -C "" -o xtarget/lisp/lisp
|
|
11
|
+ - bin/build.sh -C "" -o snapshot/bin/lisp
|
15
|
12
|
- bin/make-dist.sh -I dist linux-4
|
16
|
13
|
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
17
|
14
|
|
... |
... |
@@ -19,13 +16,10 @@ osx-runner: |
19
|
16
|
tags:
|
20
|
17
|
- osx
|
21
|
18
|
before_script:
|
22
|
|
- - curl -o cmucl-21c-x86-darwin.tar.bz2 https://common-lisp.net/project/cmucl/downloads/release/21c/cmucl-21c-x86-darwin.tar.bz2
|
|
19
|
+ - curl -o cmucl-2018-01-x86-darwin.tar.bz2 https://common-lisp.net/project/cmucl/downloads/snapshots/2018/01//cmucl-2018-01-x86-darwin.tar.bz2
|
23
|
20
|
- mkdir snapshot
|
24
|
|
- - (cd snapshot; tar xjf ../cmucl-21c-x86-darwin.tar.bz2)
|
|
21
|
+ - (cd snapshot; tar xjf ../cmucl-2018-01-x86-darwin.tar.bz2)
|
25
|
22
|
script:
|
26
|
|
- - bin/create-target.sh xtarget x86_darwin
|
27
|
|
- - bin/create-target.sh xcross x86_darwin
|
28
|
|
- - bin/cross-build-world.sh -crl xtarget xcross src/bootfiles/21c/boot-21c-cross.lisp ./snapshot/bin/lisp
|
29
|
|
- - bin/build.sh -C "" -o xtarget/lisp/lisp
|
|
23
|
+ - bin/build.sh -C "" -o snapshot/lisp/lisp
|
30
|
24
|
- bin/make-dist.sh -I dist darwin-4
|
31
|
25
|
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|