summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-06-10 21:00:57 -0400
committerBen Gamari <ben@smart-cactus.org>2019-06-15 16:56:42 -0400
commit823b3e80e31cf64669597cafd000ccdd08f98077 (patch)
tree44c57f840eaed6ad1b10dcef2ea8dcd7a939f68e
parentf17f19380f86bee8e9b62ee5f382c21e8c39c5d5 (diff)
downloadhaskell-wip/alpine-ci.tar.gz
gitlab-ci: Build alpine release bindistswip/alpine-ci
-rw-r--r--.gitlab-ci.yml24
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
#################################