From f993ea433f4830deb94b8e475498c1d15af14310 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Wed, 6 Jan 2021 17:11:03 -0800 Subject: [PATCH] Fix #93: Use our fork of ansi-test Instead of using the upstream ansi-test for CI, use our own fork. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b8e70ccbe..6173cd336 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,7 +57,7 @@ linux:test: - job: linux:build artifacts: true before_script: - - git clone https://gitlab.common-lisp.net/ansi-test/ansi-test.git + - git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - (cd ansi-test; git checkout rtoy-cmucl-expected-failures) script: - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log @@ -128,7 +128,7 @@ osx:test: - job: osx:build artifacts: true before_script: - - git clone https://gitlab.common-lisp.net/ansi-test/ansi-test.git + - git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git - (cd ansi-test; git checkout rtoy-cmucl-expected-failures) script: - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log -- GitLab