summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-07-18 08:27:59 -0400
committerBen Gamari <ben@smart-cactus.org>2022-08-05 11:56:38 -0400
commitfd595b830de2123de46de0984eceeee08e1a4b7e (patch)
tree3a835deda5632f9bd7fa67017e625cd1ca33ceda
parent1d94a59fbadd56efec78680c89946eb425eef418 (diff)
downloadhaskell-wip/bootstrapping.tar.gz
gitlab-ci: Fix hadrian bootstrapping of release pipelineswip/bootstrapping
Previously we would attempt to test hadrian bootstrapping in the `validate` build flavour. However, `ci.sh` refuses to run validation builds during release pipelines, resulting in job failures. Fix this by testing bootstrapping in the `release` flavour during release pipelines. We also attempted to record perf notes for these builds, which is redundant work and undesirable now since we no longer build in a consistent flavour.
-rw-r--r--.gitlab-ci.yml8
-rwxr-xr-x.gitlab/ci.sh6
2 files changed, 11 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0d16a1af38..ad1460ac9d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -627,14 +627,18 @@ test-bootstrap:
- popd
- rm -Rf test-bootstrap
variables:
- TEST_ENV: "x86_64-linux-deb10-hadrian"
+ # Don't record performance benchmarks
+ TEST_ENV: ""
BIN_DIST_NAME: "ghc-x86_64-deb10-linux"
BUILD_FLAVOUR: "validate"
NO_BOOT: "1"
rules:
- if: $NIGHTLY
- - if: '$RELEASE_JOB == "yes"'
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*test-bootstrap.*/'
+ - if: '$RELEASE_JOB == "yes"'
+ when: always
+ variables:
+ BUILD_FLAVOUR: "release"
############################################################
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh
index 42c487bf0c..b23def26ea 100755
--- a/.gitlab/ci.sh
+++ b/.gitlab/ci.sh
@@ -457,7 +457,11 @@ function fetch_perf_notes() {
}
function push_perf_notes() {
- if [ -n "${CROSS_TARGET:-}" ]; then
+ if [[ -z "${TEST_ENV:-}" ]]; then
+ return
+ fi
+
+ if [[ -n "${CROSS_TARGET:-}" ]]; then
info "Can't test cross-compiled build."
return
fi