diff options
author | Ben Gamari <ben@well-typed.com> | 2020-10-17 10:20:31 -0400 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2020-10-17 10:20:31 -0400 |
commit | aca0e63bce4b29ac6e0cd06dbd169b0c06b53e25 (patch) | |
tree | d53a944d07abfb63456af25b4ebf4b9f777d3d57 | |
parent | 07b0db86595890dfca6f624e554cdb8c9b86d0cc (diff) | |
download | haskell-aca0e63bce4b29ac6e0cd06dbd169b0c06b53e25.tar.gz |
gitlab-ci: Allow doc-tarball job to fail
Currently the Hadrian build appears not to package documentation correctly,
causing doc-tarball to fail due to the Windows build.
-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 3428af0afb..ab761747b4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -981,6 +981,8 @@ release-x86_64-windows-integer-simple: doc-tarball: stage: packaging needs: [validate-x86_64-linux-deb9-debug, validate-x86_64-windows-hadrian, validate-x86_64-linux-deb9-unreg-hadrian] + # N.B. Documentation isn't correctly packaged in Hadrian bindists + allow_newer: true tags: - x86_64-linux image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV" |