From 92f8697e67792de9d745583ebc282a113e3883a3 Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Sat, 2 Sep 2017 13:33:56 -0700
Subject: [PATCH] More setup for building cmucl

 - untar the snapshot into the snapshot directory
 - git clone the cmucl repo
---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3a879709f..9db69b6a9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,10 @@
 before_script:
   - apt-get update -qq && apt-get install -y wget bzip2
   - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2016/09/cmucl-2016-09-x86-linux.tar.bz2
-  - tar xjf cmucl-2016-09-x86-linux.tar.bz2
   - wget -nv https://common-lisp.net/project/cmucl/downloads/snapshots/2016/09/cmucl-2016-09-x86-linux.extra.tar.bz2
-  - tar xjf cmucl-2016-09-x86-linux.extra.tar.bz2
+  - mkdir snapshot
+  - (cd snapshot; tar xjf cmucl-2016-09-x86-linux.tar.bz2; tar xjf cmucl-2016-09-x86-linux.extra.tar.bz2)
+  - git clone https://gitlab.common-lisp.net/cmucl/cmucl.git
 
 test:
   script:
-- 
GitLab