Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC

Commits:

2 changed files:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -104,6 +104,7 @@ workflow:
    104 104
     # which versions of GHC to allow bootstrap with
    
    105 105
     .bootstrap_matrix : &bootstrap_matrix
    
    106 106
       matrix:
    
    107
    +    # If you update this version, be sure to also update 'MinBootGhcVersion' in configure.ac
    
    107 108
         - GHC_VERSION: 9.10.1
    
    108 109
           DOCKER_IMAGE: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb12-ghc9_10:$DOCKER_REV"
    
    109 110
         - GHC_VERSION: 9.12.2
    

  • configure.ac
    ... ... @@ -219,7 +219,7 @@ if test "$WithGhc" = ""
    219 219
     then
    
    220 220
         AC_MSG_ERROR([GHC is required.])
    
    221 221
     fi
    
    222
    -MinBootGhcVersion="9.8"
    
    222
    +MinBootGhcVersion="9.10"
    
    223 223
     FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[$MinBootGhcVersion],
    
    224 224
         [AC_MSG_ERROR([GHC version $MinBootGhcVersion or later is required to compile GHC.])])
    
    225 225