diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ffe3d95a71..1c6686d656 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -458,6 +458,27 @@ release-x86_64-linux-deb8: when: always expire_in: 2 week +################################# +# x86_64-linux-centos7 +################################# + +release-x86_64-linux-centos7: + extends: .validate-linux + stage: full-build + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-centos7:$DOCKER_REV" + variables: + # The sphinx release shipped with Centos 7 fails to build out documentation + BUILD_SPHINX_HTML: "NO" + BUILD_SPHINX_PDF: "NO" + TEST_ENV: "x86_64-linux-centos7" + BIN_DIST_PREP_TAR_COMP: "bindistprep/ghc-x86_64-centos7-linux.tar.xz" + only: + - tags + cache: + key: linux-x86_64-centos7 + artifacts: + when: always + expire_in: 2 week ################################# # x86_64-linux-fedora27 |