Wolfgang Jeltsch pushed to branch wip/jeltsch/ghc-9-14-building-base at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -1161,7 +1161,7 @@ base-build-with-released-ghcs:
    1161 1161
         - x86_64-linux
    
    1162 1162
       script:
    
    1163 1163
         - |
    
    1164
    -      ghc_versions=9.14.1
    
    1164
    +      ghc_versions=9.14.1 9.12.4
    
    1165 1165
           sed -E -e 's/^( *ghc-internal) *== .*(,|$)/\1\2/' \
    
    1166 1166
             < libraries/base/base.cabal.in \
    
    1167 1167
             > libraries/base/base.cabal
    
    ... ... @@ -1173,12 +1173,12 @@ base-build-with-released-ghcs:
    1173 1173
             cd ghc-${ghc_version}-x86_64-unknown-linux
    
    1174 1174
             ./configure --prefix "$PWD/../ghc-${ghc_version}-installed"
    
    1175 1175
             make install
    
    1176
    -        cd -
    
    1176
    +        cd - >/dev/null
    
    1177 1177
             cd libraries/base
    
    1178 1178
             cabal build --with-compiler ../../ghc-${ghc_version}-installed/bin/ghc \
    
    1179 1179
                         --allow-boot-library-installs \
    
    1180 1180
                         -O0
    
    1181
    -        cd -
    
    1181
    +        cd - >/dev/null
    
    1182 1182
           done
    
    1183 1183
       rules:
    
    1184 1184
         - *full-ci