Skip to content

Commit 9e7548c

Browse files
committed
skip tests that don't work on ghc 9
1 parent 05054cb commit 9e7548c

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

test/githash/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ let
4242
packages.githash-test.components.exes.githash-test;
4343

4444
in recurseIntoAttrs {
45+
meta.disabled = compiler-nix-name == "ghc901";
46+
4547
ifdInputs = {
4648
inherit (project) plan-nix;
4749
};

test/setup-deps/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ let
2424
in
2525

2626
recurseIntoAttrs ({
27+
meta.disabled = compiler-nix-name == "ghc901";
28+
2729
ifdInputs = {
2830
plan-nix = addMetaAttrs meta project.plan-nix;
2931
};

test/shell-for-setup-deps/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ let
1616
env = project.shellFor {};
1717

1818
in recurseIntoAttrs ({
19+
meta.disabled = compiler-nix-name == "ghc901";
20+
1921
ifdInputs = {
2022
inherit (project) plan-nix;
2123
};

0 commit comments

Comments
 (0)