Raymond Toy pushed to branch rtoy-gitlab-ci at cmucl / cmucl
Commits:
7bdf20d1 by Raymond Toy at 2017-09-02T14:09:34-07:00
Use correct path to the snapshot build
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,6 @@ test:
- echo $SHELL
- PS1='\w \$ '
- type -all time
- - bin/build.sh -B boot-2017-04-1 -C "" -o ../snapshot/bin/lisp
+ - bin/build.sh -B boot-2017-04-1 -C "" -o ./snapshot/bin/lisp
- bin/make-dist.sh -I dist-linux linux-4
- bin/run-tests.sh -l dist-linux/bin/lisp
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/7bdf20d148ad6ac305c380ef0…
---
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/7bdf20d148ad6ac305c380ef0…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch rtoy-gitlab-ci at cmucl / cmucl
Commits:
745ad37b by Raymond Toy at 2017-09-02T14:06:26-07:00
Don't need to do a git clone; install /usr/bin/time too.
The runner already has the git repo checked out at $PWD, so we're
ready to go.
Try to install time so build.sh will run.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,18 +1,16 @@
before_script:
- ls -F
- - apt-get update -qq && apt-get install -y wget bzip2 git make gcc gcc-multilib
+ - apt-get update -qq && apt-get install -y wget bzip2 git make gcc gcc-multilib time
- wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/04/cmucl-201…
- wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/04/cmucl-201…
- mkdir snapshot
- (cd snapshot; tar xjf ../cmucl-2017-04-x86-linux.tar.bz2; tar xjf ../cmucl-2017-04-x86-linux.extra.tar.bz2)
- - git clone https://gitlab.common-lisp.net/cmucl/cmucl.git
test:
script:
- echo $SHELL
- PS1='\w \$ '
- type -all time
- - cd cmucl
- bin/build.sh -B boot-2017-04-1 -C "" -o ../snapshot/bin/lisp
- bin/make-dist.sh -I dist-linux linux-4
- bin/run-tests.sh -l dist-linux/bin/lisp
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/745ad37b75ddc521975d6942f…
---
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/745ad37b75ddc521975d6942f…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch rtoy-gitlab-ci at cmucl / cmucl
Commits:
119a7980 by Raymond Toy at 2017-09-02T13:53:35-07:00
Add some debugging stuff.
- Print out the SHELL
- Set prompt to include PWD
- Where is `time` and why can't the shell find it?
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,6 +8,9 @@ before_script:
test:
script:
+ - echo $SHELL
+ - PS1='\w \$ '
+ - which time
- cd cmucl
- bin/build.sh -B boot-2017-04-1 -C "" -o ../snapshot/bin/lisp
- bin/make-dist.sh -I dist-linux linux-4
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/119a79809d295dcde85b7f53a…
---
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/119a79809d295dcde85b7f53a…
You're receiving this email because of your account on gitlab.common-lisp.net.