diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-06-17 10:13:20 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-06-17 10:15:53 +0100 |
commit | c12815de939575ebeb9e98934f436a97794ba816 (patch) | |
tree | dd3e2a30fa54b32bc8035e119ced751958375501 | |
parent | 031721163eb6e713dd67e1ac512ae137c57ba1c2 (diff) | |
download | haskell-wip/no_boot.tar.gz |
Add NO_BOOT to hackage_doc_tarball jobwip/no_boot
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.
-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 |