Skip to content

Commit 4ac5dfe

Browse files
committed
Disable tests of llvm backend for musl32 (seems broken)
1 parent 8e0d348 commit 4ac5dfe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@
9797
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "unstable" && !builtins.elem compiler-nix-name ["ghc902" "ghc928" "ghc948"]) {
9898
# Musl cross only works on linux
9999
# aarch64 cross only works on linux
100-
inherit (lib.systems.examples) musl32 musl64 aarch64-multiplatform;
100+
inherit (lib.systems.examples) musl64 aarch64-multiplatform;
101+
} // lib.optionalAttrs (__match ".*llvm" compiler-nix-name == null && system == "x86_64-linux" && nixpkgsName == "unstable" && !builtins.elem compiler-nix-name ["ghc902" "ghc928" "ghc948"]) {
102+
# Out llvm versions of GHC seem to break for musl32
103+
inherit (lib.systems.examples) musl32;
101104
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "R2411" && !builtins.elem compiler-nix-name ["ghc902" "ghc928" "ghc948"]) {
102105
inherit (lib.systems.examples) aarch64-android-prebuilt armv7a-android-prebuilt;
103106
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "unstable" && !builtins.elem compiler-nix-name ["ghc8107" "ghc902"]) {

0 commit comments

Comments
 (0)