Skip to content

Commit f1e5456

Browse files
committed
Add mingwW64 back into ci (but not GHC 9.6.6)
1 parent 8e3f39e commit f1e5456

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
|| (system == "aarch64-darwin" && !builtins.elem compiler-nix-name ["ghc902" "ghc928" "ghc948" "ghc966" "ghc982" "ghc983" "ghc984"])
9090
)) {
9191
inherit (lib.systems.examples) ghcjs;
92+
} // lib.optionalAttrs (
93+
(__match ".*llvm" compiler-nix-name == null)
94+
&& ((system == "x86_64-linux" && !builtins.elem compiler-nix-name ["ghc902" "ghc928" "ghc966"]) # Not sure why GHC 9.6.6 TH code now wants `log1pf`
95+
|| (system == "x86_64-darwin" && builtins.elem compiler-nix-name []))) { # TODO add ghc versions when we have more darwin build capacity
96+
inherit (lib.systems.examples) mingwW64;
9297
} // lib.optionalAttrs (nixpkgsName == "unstable"
9398
&& (__match ".*llvm" compiler-nix-name == null)
9499
&& ((system == "x86_64-linux" && !builtins.elem compiler-nix-name ["ghc8107" "ghc902" "ghc928" "ghc948"])

0 commit comments

Comments
 (0)