From 516906a03b48cfa8d6b967f71426e2d6b58f8a12 Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Mon, 8 Jul 2024 13:50:28 +0200 Subject: [PATCH] [Chore] Update GHC versions tested by CI Problem: we've recently supported ghc-9.10.1, but it's not tested by CI. Also we're still testing ghc-8.8.4, which is rather old and causes some troubles when updating Nix dependencies. Solution: add 9.10.1 to tested GHC versions, remove 8.8.4. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ddb9fe6..e975d5e 100644 --- a/flake.nix +++ b/flake.nix @@ -38,7 +38,7 @@ hs-package-name = "with-utf8"; - ghc-versions = [ "884" "8107" "902" "928" "948" "963" "981" ]; + ghc-versions = [ "8107" "902" "928" "948" "963" "981" "9101" ]; # invoke haskell.nix for each ghc version listed in ghc-versions pkgs-per-ghc = lib.genAttrs (map (v: "ghc${v}") ghc-versions)