Skip to content

Commit 7449816

Browse files
committed
Disable test for aarch64 with old GHC
1 parent ce518e6 commit 7449816

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/embed-file/default.nix

+8-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,14 @@ let
1616
packages = project.hsPkgs;
1717

1818
in recurseIntoAttrs rec {
19-
meta.disabled = stdenv.hostPlatform.isGhcjs;
19+
meta.disabled = stdenv.hostPlatform.isGhcjs
20+
# Could not load 'filezmembedzm0zi0zi16zi0zmL8bqDH6rAX64X4nLQOoPcy_DataziFileEmbed_makeRelativeToProject_closure', dependency unresolved. See top entry above.
21+
|| (builtins.elem compiler-nix-name ["ghc928"] && !haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl)
22+
# /build/source-test-embed-file-root-test-embed-file-exe-embed-file-root/test/embed-file/app: getDirectoryContents:openDirStream: invalid argument (Invalid argument)
23+
|| (builtins.elem compiler-nix-name ["ghc928"] && haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl)
24+
# Failed to lookup symbol: __aarch64_swp8_acq_rel
25+
|| (builtins.elem compiler-nix-name ["ghc947" "ghc948"] && haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64)
26+
;
2027

2128
ifdInputs = {
2229
inherit (project) plan-nix;

0 commit comments

Comments
 (0)