summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-08-22 16:05:47 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-09-14 17:17:04 -0400
commitc4438347db08f113454d716df33bd81773f98411 (patch)
tree5de0a8731c025d1b9766dedd9b9f196928092d50
parente470e91f7dca7c85cc77508b1140a23722702c06 (diff)
downloadhaskell-c4438347db08f113454d716df33bd81773f98411.tar.gz
Remove stage1:exe:ghc-bin pre-build from CI script
CI builds stage1:exe:ghc-bin before the binary-dist target which introduces some quite bad linearisation (see #22093) because we don't build stage1 compiler in parallel with anything. Then when the binary-dist target is started we have to build stage1:exe:ghc-pkg before doing anything. Fixes #22094
-rwxr-xr-x.gitlab/ci.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh
index 5c8abd135a..7a18034760 100755
--- a/.gitlab/ci.sh
+++ b/.gitlab/ci.sh
@@ -496,10 +496,6 @@ function build_hadrian() {
check_release_build
- # N.B. First build Hadrian, unsetting MACOSX_DEPLOYMENT_TARGET which may warn
- # if the bootstrap libraries were built with a different version expectation.
- MACOSX_DEPLOYMENT_TARGET="" run_hadrian -V stage1:exe:ghc-bin
-
if [[ -n "${REINSTALL_GHC:-}" ]]; then
run_hadrian build-cabal -V
else