We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ffed7 commit 3ea28b1Copy full SHA for 3ea28b1
test/annotations/default.nix
@@ -15,7 +15,11 @@ in recurseIntoAttrs {
15
# Failed to lookup symbol: __aarch64_swp8_acq_rel
16
|| (builtins.elem compiler-nix-name ["ghc947" "ghc948"] && haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64)
17
# unhandled ELF relocation(Rel) type 10
18
- || (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_32);
+ || (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_32)
19
+ # Disable for now (CI machines currently timing out)
20
+ || stdenv.hostPlatform.isWindows || stdenv.hostPlatform.isAndroid
21
+ || (stdenv.buildPlatform.isx86_64 && stdenv.hostPlatform.isAarch64)
22
+ ;
23
ifdInputs = {
24
inherit (project) plan-nix;
25
};
0 commit comments