1
0
Fork 0
mirror of https://github.com/malob/prefmanager.git synced 2024-12-14 11:57:49 +00:00

Disable GHC 9.4.5 and 9.6.2 due to denpendency build failure

This commit is contained in:
Malo Bourgon 2023-06-28 17:11:58 -07:00
parent c8caff143a
commit 939cec996d

View file

@ -1,5 +1,6 @@
{
name = "prefmanager";
ghcVersions = map (v: "ghc${v}") [ "8107" "902" "928" "945" "962" ];
# GHC 9.4.5 and 9.6.2 are disabled since `fgl` a dependency of `async-pool` fails to build.
ghcVersions = map (v: "ghc${v}") [ "8107" "902" "928" /* "945" "962" */ ];
defaultGhcVersion = "ghc928";
}