diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-24 11:15:39 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-30 13:44:50 -0400 |
commit | a96dccfe8201542086a65d168ce6d6b9d302e2c2 (patch) | |
tree | 8be4ac42d0af649f6e98e3cc4a1156ab325c3202 /.gitlab-ci.yml | |
parent | cac8c7bb098002ddce0ef7c1e4429940d22d8cc2 (diff) | |
download | haskell-a96dccfe8201542086a65d168ce6d6b9d302e2c2.tar.gz |
ci: Test the bootstrap without ALEX/HAPPY on path
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38e10d3afa..8955ee6e61 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -574,6 +574,9 @@ test-bootstrap: - python3 ./hadrian/bootstrap/bootstrap.py -w $GHC --bootstrap-sources hadrian-bootstrap-sources-*.tar.gz - export HADRIAN_PATH="$PWD/_build/bin/hadrian" - .gitlab/ci.sh setup + # Bootstrapping should not depend on HAPPY or ALEX so set them to false + # so the build fails if they are invoked. + - export HAPPY=/bin/false; export ALEX=/bin/false - .gitlab/ci.sh configure - .gitlab/ci.sh build_hadrian - .gitlab/ci.sh test_hadrian |