[Git][ghc/ghc][ghc-9.14] gitlab-ci: Allow FreeBSD jobs to fail

Ben Gamari pushed to branch ghc-9.14 at Glasgow Haskell Compiler / GHC Commits: f080dec4 by Ben Gamari at 2025-08-17T11:33:48-04:00 gitlab-ci: Allow FreeBSD jobs to fail Due to #26303. - - - - - 2 changed files: - .gitlab/generate-ci/gen_ci.hs - .gitlab/jobs.yaml Changes: ===================================== .gitlab/generate-ci/gen_ci.hs ===================================== @@ -1235,7 +1235,7 @@ darwin = freebsd_jobs :: [JobGroup Job] freebsd_jobs = - [ addValidateRule FreeBSDLabel (standardBuilds Amd64 FreeBSD14) + [ allowFailureGroup (addValidateRule FreeBSDLabel (standardBuilds Amd64 FreeBSD14)) ] alpine_x86 :: [JobGroup Job] ===================================== .gitlab/jobs.yaml ===================================== @@ -1415,7 +1415,7 @@ ".gitlab/ci.sh clean", "cat ci_timings.txt" ], - "allow_failure": false, + "allow_failure": true, "artifacts": { "expire_in": "8 weeks", "paths": [ @@ -4303,7 +4303,7 @@ ".gitlab/ci.sh clean", "cat ci_timings.txt" ], - "allow_failure": false, + "allow_failure": true, "artifacts": { "expire_in": "1 year", "paths": [ @@ -5730,7 +5730,7 @@ ".gitlab/ci.sh clean", "cat ci_timings.txt" ], - "allow_failure": false, + "allow_failure": true, "artifacts": { "expire_in": "2 weeks", "paths": [ View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f080dec404fd6d46ad06b052d9366ff2... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f080dec404fd6d46ad06b052d9366ff2... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Ben Gamari (@bgamari)