From a3e42a4ca10519c1ff2c2858173911dbf40690e0 Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Wed, 3 Feb 2021 19:57:26 -0800
Subject: [PATCH] Update CI to use 2021-01 snapshot

Binaries for the 2021-01 snapshot are available so use those instead
of doing a cross-compile from 2020-04.
---
 .gitlab-ci.yml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6173cd336..d866fa09b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,5 @@
 variables:
-  download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2020/04"
+  download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2021/01"
   version: "2020-04-x86"
   bootstrap: ""
 
@@ -37,11 +37,11 @@ linux:build:
       artifacts: true
   script:
     # Do cross compile first
-    - bin/create-target.sh xtarget x86_linux_clang
-    - bin/create-target.sh xcross x86_linux_clang
-    - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
-    # Regular build using the cross-compiled result
-    - bin/build.sh $bootstrap -R -C "" -o xtarget/lisp/lisp
+    #- bin/create-target.sh xtarget x86_linux_clang
+    #- bin/create-target.sh xcross x86_linux_clang
+    #- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
+    # Regular build using the cross-compiled result or snapshot
+    - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
     - bin/make-dist.sh -I dist linux-4
 
 linux:test:
@@ -108,11 +108,11 @@ osx:build:
       artifacts: true
   script:
     # Do cross compile first
-    - bin/create-target.sh xtarget x86_darwin
-    - bin/create-target.sh xcross x86_darwin
-    - bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
-    # Regular build using the cross-compiled result
-    - bin/build.sh $bootstrap -R -C "" -o xtarget/lisp/lisp
+    #- bin/create-target.sh xtarget x86_darwin
+    #- bin/create-target.sh xcross x86_darwin
+    #- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
+    # Regular build using the cross-compiled result or snapshot
+    - bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
     - bin/make-dist.sh -I dist darwin-4
 
 osx:test:
-- 
GitLab