From d3aa119cf77c20785cd6625ce475c2c8a78e2415 Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Tue, 9 Jul 2024 08:14:23 +0200 Subject: [PATCH] Skip `//tests/haskell_module/dep-narrowing-th:lib` on Darwin with GHC 9.6.5 It still crashes ghc-iserv, see https://github.com/tweag/rules_haskell/issues/2073 --- .../tests/haskell_module/dep-narrowing-th/BUILD.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules_haskell_tests/tests/haskell_module/dep-narrowing-th/BUILD.bazel b/rules_haskell_tests/tests/haskell_module/dep-narrowing-th/BUILD.bazel index d64285858..dde47ef46 100644 --- a/rules_haskell_tests/tests/haskell_module/dep-narrowing-th/BUILD.bazel +++ b/rules_haskell_tests/tests/haskell_module/dep-narrowing-th/BUILD.bazel @@ -97,7 +97,7 @@ haskell_library( tags = [ # skip building this target on macos with GHC 9.6.2 since it crashes ghc-iserv # see https://github.com/tweag/rules_haskell/issues/2073 - "dont_build_on_macos_with_ghc_9.6.2", + "dont_build_on_macos_with_ghc_9.6.5", # The same error still happens with ghc 9.8.1 in profiling mode "dont_build_on_macos_with_ghc_9.8.1", @@ -124,7 +124,7 @@ haskell_test( tags = [ # skip testing this target on macos with GHC 9.6.2 since it crashes ghc-iserv # see https://github.com/tweag/rules_haskell/issues/2073 - "dont_build_on_macos_with_ghc_9.6.2", + "dont_build_on_macos_with_ghc_9.6.5", # The same error still happens with ghc 9.8.1 in profiling mode "dont_build_on_macos_with_ghc_9.8.1",