From 3d227b6ba0ff577f2130d84d63f763d4c4a32cb6 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 3 Sep 2017 09:50:28 -0700 Subject: [PATCH] Install git (again) While not strictly necessary, make-dist.sh uses git to determine a default lisp-implmenetation-version. We could just use -V to do that, but I think it's best to have git so that the pipeline looks as much like normal development as possible. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 82f8eca65..6ccaf81b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ before_script: - - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc + - 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/snapshots/2017/04/cmucl-2017-04-x86-linux.tar.bz2 - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2017/04/cmucl-2017-04-x86-linux.extra.tar.bz2 - mkdir snapshot @@ -9,4 +9,4 @@ test: script: - 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 + - bin/run-tests.sh -l dist-linux/bin/lisp 2>&1 | tee test.log -- GitLab