From bb06c6b12c4a24c049fa8fbc9c470f12d625ca18 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Tue, 25 Dec 2018 16:54:25 -0500 Subject: [PATCH] gitlab-ci: Allow Windows to fail for now While we sort out #16084. --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e471d99611..6d8276faf3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -328,11 +328,11 @@ validate-x86_64-linux-deb9-unreg: validate-x86_64-windows-hadrian: extends: .validate-windows stage: full-build + # due to #16073 + allow_failure: true variables: GHC_VERSION: "8.6.2" LANG: "en_US.UTF-8" - # due to #16073 - allow_failure: true script: - | set MSYSTEM=MINGW64 @@ -352,6 +352,8 @@ validate-x86_64-windows-hadrian: validate-x86_64-windows: extends: .validate-windows stage: full-build + # due to #16084 + allow_failure: true variables: GHC_VERSION: "8.6.2" LANG: "en_US.UTF-8" -- GitLab