Wolfgang Jeltsch pushed to branch wip/jeltsch/ghc-9-14-building-base at Glasgow Haskell Compiler / GHC Commits: 4c6f494e by Wolfgang Jeltsch at 2026-06-08T16:25:20+03:00 Add installation of GHC 9.14.1 - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -1154,15 +1154,23 @@ base-build-with-ghc-914: - job: release-x86_64-linux-deb13-release optional: true dependencies: null - image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb13:$DOCKER_REV" + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb12:$DOCKER_REV" tags: - x86_64-linux script: - - printf '%s\n' 'Check for some tools …' - | - type ghcup - type ghc && ghc --version - type cabal + ghc_version=9.14.1 + url=https://downloads.haskell.org/~ghc/$ghc_version/ghc-$ghc_version-x86_64-deb1... + curl "$url" >ghc-$ghc_version.tar.xz + tar -xJF ghc-$ghc_version.tar.xz + cd ghc-$ghc_version + ./configure --prefix "$PWD/../ghc" + make install + cd - + printf '%s\n' 'To be continued …' + printf '%s\n' 'For now some debug output:' + shopt -s globstar + ls -l ghc/**/bin rules: - *full-ci View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/4c6f494e40ad95b5bab2f6c3864ffbfc... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/4c6f494e40ad95b5bab2f6c3864ffbfc... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)