summaryrefslogtreecommitdiff
path: root/.gitlab/gen_ci.hs
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-03-31 13:36:45 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2022-04-01 10:35:53 +0100
commitacfd5a4c4f0a235240a15dc9f4417a11ece5a143 (patch)
treedf58b1782cf943f9806c0f8c60efdb9c3af5f7de /.gitlab/gen_ci.hs
parent7847f47a72a25ae6b4523907e452b666d72d0d28 (diff)
downloadhaskell-acfd5a4c4f0a235240a15dc9f4417a11ece5a143.tar.gz
ci: Regenerate jobs.yaml
It seems I forgot to update this to reflect the current state of gen_ci.hs
Diffstat (limited to '.gitlab/gen_ci.hs')
-rwxr-xr-x.gitlab/gen_ci.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab/gen_ci.hs b/.gitlab/gen_ci.hs
index c1099d846e..14cd5cbdf4 100755
--- a/.gitlab/gen_ci.hs
+++ b/.gitlab/gen_ci.hs
@@ -351,6 +351,14 @@ distroVariables Alpine = mconcat
-- (see Note [Object unloading]).
, "BROKEN_TESTS" =: "encoding004 T10458 ghcilink002 linker_unload_native"
]
+distroVariables Fedora33 = mconcat
+ -- LLC/OPT do not work for some reason in our fedora images
+ -- These tests fail with this error: T11649 T5681 T7571 T8131b
+ -- +/opt/llvm/bin/opt: /lib64/libtinfo.so.5: no version information available (required by /opt/llvm/bin/opt)
+-- +/opt/llvm/bin/llc: /lib64/libtinfo.so.5: no version information available (required by /opt/llvm/bin/llc)
+ [ "LLC" =: "/bin/false"
+ , "OPT" =: "/bin/false"
+ ]
distroVariables _ = mempty
-----------------------------------------------------------------------------