Skip to content

Commit 44db6a3

Browse files
committed
Disable TH tests for Windows and Android
1 parent 429923f commit 44db6a3

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

test/js-template-haskell/default.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

test/th-dlls/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 = {

0 commit comments

Comments
 (0)