From 8b4558e28b14572b9544d93b3fc6c3a1241c94bf Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 20 Dec 2023 11:02:08 +0100 Subject: [PATCH] release-haskell.nix: bump pkgsStatic testing from ghc928 to ghc948 Testing GHC 9.2.8 is not that valuable anymore. Having an explicit GHC 9.4.8 target duplicates the default haskellPackages targets for now, but prevents us from loosing testing of the make build system going forward. --- pkgs/top-level/release-haskell.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index f1b5645e52b6..6af315ba1c2a 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -415,7 +415,7 @@ let # Test some statically linked packages to catch regressions # and get some cache going for static compilation with GHC. - # Use integer-simple to avoid GMP linking problems (LGPL) + # Use native-bignum to avoid GMP linking problems (LGPL) pkgsStatic = removePlatforms [ @@ -437,8 +437,8 @@ let ; }; - haskell.packages.native-bignum.ghc928 = { - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc928) + haskell.packages.native-bignum.ghc948 = { + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc948) hello lens random @@ -671,8 +671,8 @@ let ]; }; constituents = accumulateDerivations [ + jobs.pkgsStatic.haskell.packages.native-bignum.ghc948 # non-hadrian jobs.pkgsStatic.haskellPackages - jobs.pkgsStatic.haskell.packages.native-bignum.ghc928 ]; }; }