diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-04-11 18:22:51 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-04-20 11:55:38 -0400 |
commit | 2145b738aaa974ab0a7103b110e268fbf98b95c4 (patch) | |
tree | 7a828e61da29ca07be61b67c888f33a82b5ea8b4 /.gitlab-ci.yml | |
parent | bd3872dff8889427942ad63966e8f274f44489f8 (diff) | |
download | haskell-2145b738aaa974ab0a7103b110e268fbf98b95c4.tar.gz |
gitlab-ci: Add centos7 release job
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 |