diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-06-17 10:13:20 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-06-20 12:32:59 -0400 |
commit | b5590fff75496356b1817adc9de1f2d361a70dc5 (patch) | |
tree | 7ffc80ba1e5070f4822c3a1a3c1e072827261e3f /.gitlab-ci.yml | |
parent | 262a9f93e84ffacd6540e72e941e3cc69cf87807 (diff) | |
download | haskell-b5590fff75496356b1817adc9de1f2d361a70dc5.tar.gz |
Add NO_BOOT to hackage_doc_tarball job
We were attempting to boot a src-tarball which doesn't work as ./boot is
not included in the source tarball. This slipped through as the job is
only run on nightly.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55983437bc..649accd1c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -528,6 +528,8 @@ hackage-doc-tarball: variables: # Don't clone the git repo.. GIT_STRATEGY: none + # Don't attempt to boot a source tarball + NO_BOOT: "1" artifacts: paths: - hackage_docs |