From 24ed611667f43b267e076a0319fcb73ff1db7a99 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 3 Sep 2017 09:15:44 -0700 Subject: [PATCH] More testing of CI - Don't need to install git anymore - exit early from build script to see if that makes the test fail. --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 41fe74d85..725c8d2f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ before_script: - ls -F - - apt-get update -qq && apt-get install -y wget bzip2 git make gcc gcc-multilib time bc + - apt-get update -qq && apt-get install -y wget bzip2 make gcc gcc-multilib time bc - 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 @@ -11,6 +11,7 @@ test: - echo $SHELL - PS1='\w \$ ' - type -all time + - exit 1 - 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 -- GitLab