summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-04-21 16:18:58 -0400
committerBen Gamari <ben@smart-cactus.org>2021-04-21 23:36:24 -0400
commit4c20e355dfef8c73429a44300c35267b939df357 (patch)
treea74edd64ab44e57211c0bc6cd8210a567653028b
parentbe1f2d6ee54218aea1ebc254de598cd139310545 (diff)
downloadhaskell-4c20e355dfef8c73429a44300c35267b939df357.tar.gz
gitlab-ci: Fix Windows release buildghc-9.2.1-alpha2
-rw-r--r--.gitlab-ci.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6713aff9fd..c29d52b3e9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1233,8 +1233,9 @@ release-x86_64-windows:
extends: .build-x86_64-windows-hadrian
variables:
BUILD_FLAVOUR: "perf"
- IGNORE_PERF_FAILURES: "all"
HADDOCK_HYPERLINKED_SOURCES: "yes"
+ # --skip-perf is incompatible with IGNORE_PERF_FAILURES.
+ IGNORE_PERF_FAILURES: ""
release-x86_64-windows-integer-simple:
<<: *release
@@ -1245,6 +1246,8 @@ release-x86_64-windows-integer-simple:
IGNORE_PERF_FAILURES: "all"
BUILD_FLAVOUR: "perf"
BIN_DIST_NAME: "ghc-x86_64-mingw32-unknown-nogmp"
+ # --skip-perf is incompatible with IGNORE_PERF_FAILURES.
+ IGNORE_PERF_FAILURES: ""
############################################################