From cd429e9f7ce9b6087f286d50b3b120d29b360cc1 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 2 Sep 2017 13:15:29 -0700 Subject: [PATCH] Use wget instead of curl --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b2e1f958c..1f3c45086 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,8 @@ before_script: - - curl -s https://common-lisp.net/project/cmucl/downloads/snapshots/2016/09/cmucl-2016-09-x86-linux.tar.bz2 | tar xjf - - - curl -s https://common-lisp.net/project/cmucl/downloads/snapshots/2016/09/cmucl-2016-09-x86-linux.extra.tar.bz2 | tar xjf - + - 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 test: script: -- GitLab