Skip to content

Commit 2e314de

Browse files
committed
Don't run CI for GHC 9.10.2 JS
1 parent bfdf339 commit 2e314de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@
7777
# of 'lib.systems.examples' are not understood between all versions
7878
let lib = nixpkgs.lib;
7979
in lib.optionalAttrs (nixpkgsName == "unstable"
80-
&& (__match ".*llvm" compiler-nix-name == null)) {
80+
&& (__match ".*llvm" compiler-nix-name == null)
81+
&& !builtins.elem compiler-nix-name ["ghc9102"]) {
8182
inherit (lib.systems.examples) ghcjs;
8283
} // lib.optionalAttrs (nixpkgsName == "unstable"
8384
&& (__match ".*llvm" compiler-nix-name == null)

0 commit comments

Comments
 (0)