File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,11 @@ in recurseIntoAttrs {
2727 # Not sure why this is failing with a seg fault
2828 || ( builtins . elem compiler-nix-name [ "ghc9102" "ghc9102llvm" ] && stdenv . hostPlatform . isAndroid && stdenv . hostPlatform . isAarch32 )
2929 # unhandled ELF relocation(Rel) type 10
30- || ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 ) ;
30+ || ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 )
31+
32+ # Disable for now (CI machines currently hang without timing out)
33+ || stdenv . hostPlatform . isWindows || stdenv . hostPlatform . isAndroid
34+ ;
3135
3236 build = packages . js-template-haskell . components . library ;
3337 check = packages . js-template-haskell . checks . test ;
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ in recurseIntoAttrs {
4343 || ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
4444 # We have been unable to get windows cross compilation of th-orphans to work for GHC 8.10 using the latest nixpkgs
4545 || ( compiler-nix-name == "ghc8107" && stdenv . hostPlatform . isWindows )
46+
47+ # Disable for now (CI machines currently hang without timing out)
48+ || stdenv . hostPlatform . isWindows || stdenv . hostPlatform . isAndroid
4649 ;
4750
4851 ifdInputs = {
You can’t perform that action at this time.
0 commit comments