Skip to content

Commit c05123a

Browse files
committed
Avoid aarch64-linux ghc 8.6.5 in ci.nix
1 parent 656818e commit c05123a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ci.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@
5353
# aarch64-darwin requires ghc 8.10.7 and does not work on older nixpkgs
5454
(v != "aarch64-darwin" || (
5555
!__elem compiler-nix-name ["ghc865" "ghc884" "ghc8104" "ghc810420210212" "ghc8105" "ghc8106" "ghc901" "ghc921"]
56-
&& !__elem nixpkgsName ["R2105"]))) supportedSystems) (v: v);
56+
&& !__elem nixpkgsName ["R2105"]))
57+
&&
58+
# aarch64-linux requires ghc 8.8.4
59+
(v != "aarch64-linux" || (
60+
!__elem compiler-nix-name ["ghc865" "ghc8104" "ghc810420210212" "ghc8105" "ghc8106" "ghc901" "ghc921"]
61+
))) supportedSystems) (v: v);
5762
crossSystems = nixpkgsName: nixpkgs: compiler-nix-name: system:
5863
# We need to use the actual nixpkgs version we're working with here, since the values
5964
# of 'lib.systems.examples' are not understood between all versions

0 commit comments

Comments
 (0)