diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-06-10 21:00:57 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-06-16 06:26:38 -0400 |
commit | 338336d37eaaac614c6f2c3b077417195b05e713 (patch) | |
tree | 1d97558e658441fc3f19b390d375a3eaeaec81aa | |
parent | e647752e7b99c2fb198b652bc00c531cf31878cf (diff) | |
download | haskell-338336d37eaaac614c6f2c3b077417195b05e713.tar.gz |
gitlab-ci: Build alpine release bindists
-rw-r--r-- | .gitlab-ci.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6eb9d655bf..4d8b8ee89d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -578,6 +578,30 @@ release-x86_64-linux-deb8: expire_in: 2 week ################################# +# x86_64-linux-alpine +################################# + +release-x86_64-linux-alpine: + extends: .validate-linux + stage: full-build + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-alpine:$DOCKER_REV" + # There are currently a few failing tests + allow_failure: true + variables: + BUILD_SPHINX_PDF: "NO" + TEST_ENV: "x86_64-linux-alpine" + BIN_DIST_PREP_TAR_COMP: "bindistprep/ghc-x86_64-alpine-linux.tar.xz" + # Can't use ld.gold due to #13958. + CONFIGURE_ARGS: "--disable-ld-override" + only: + - tags + cache: + key: linux-x86_64-alpine + artifacts: + when: always + expire_in: 2 week + +################################# # x86_64-linux-centos7 ################################# |