summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-03-08 10:05:45 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-03-21 23:45:03 -0400
commit8f8d532c6c9ade79c5ba1a6e08b3e082db1a5fcd (patch)
tree9b05df13cd2744e28d896d1f32bb8988d39c8001
parent322239de9555ff753db08d1508ee52a484c89093 (diff)
downloadhaskell-8f8d532c6c9ade79c5ba1a6e08b3e082db1a5fcd.tar.gz
gitlab-ci: Do full `perf` build when building Windows releases
-rw-r--r--.gitlab-ci.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 84f0816f3e..2f204301ad 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -515,13 +515,14 @@ nightly-i386-windows-hadrian:
# due to #16084
allow_failure: true
variables:
+ BUILD_FLAVOUR: "quick"
GHC_VERSION: "8.6.2"
BIN_DIST_PREP_TAR_COMP: "bindistprep/ghc-x86_64-mingw32.tar.xz"
script:
- |
python boot
bash -c './configure --enable-tarballs-autodownload GHC=`pwd`/toolchain/bin/ghc HAPPY=`pwd`/toolchain/bin/happy ALEX=`pwd`/toolchain/bin/alex'
- - bash -c "echo include mk/flavours/quick.mk > mk/build.mk"
+ - bash -c "echo include mk/flavours/${BUILD_FLAVOUR}.mk > mk/build.mk"
- bash -c "PATH=`pwd`/toolchain/bin:$PATH make -j`mk/detect-cpu-count.sh`"
- bash -c "PATH=`pwd`/toolchain/bin:$PATH make binary-dist TAR_COMP_OPTS=-1"
- bash -c 'make V=0 test THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../junit.xml'
@@ -543,12 +544,22 @@ validate-x86_64-windows:
cache:
key: x86_64-windows
+# Normal Windows validate builds are profiled; that won't do for releases.
+release-x86_64-windows:
+ extends: validate-x86_64-windows
+ variables:
+ MSYSTEM: MINGW64
+ BUILD_FLAVOUR: "perf"
+ only:
+ - tags
+
release-i386-windows:
extends: .build-windows-make
only:
- tags
variables:
MSYSTEM: MINGW32
+ BUILD_FLAVOUR: "perf"
cache:
key: i386-windows