Skip to content

Commit dc365a2

Browse files
committed
Disable failing test
1 parent 45b7df8 commit dc365a2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/shell-for-setup-deps/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ in recurseIntoAttrs ({
2727
meta.disabled = stdenv.buildPlatform != stdenv.hostPlatform
2828
|| compiler-nix-name == "ghc901" || compiler-nix-name == "ghc902" ||
2929
# TH breaks for ghc 9.4.3 cross compile for macOS with this test
30-
(stdenv.hostPlatform.isDarwin && __elem compiler-nix-name ["ghc941" "ghc942" "ghc943" "ghc944"]);
30+
(stdenv.hostPlatform.isDarwin && __elem compiler-nix-name ["ghc941" "ghc942" "ghc943" "ghc944"]) ||
31+
# Segfaults in ghc-pkg on aarc64-linux for GHC 8.10
32+
(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64 && compiler-nix-name == "ghc8107");
3133
ifdInputs = {
3234
inherit (project) plan-nix;
3335
};

0 commit comments

Comments
 (0)