summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-10 10:16:00 -0400
committerGitHub <noreply@github.com>2022-05-10 10:16:00 -0400
commit18713f589c1ed9144d873f2656f2067ebf6f3ba2 (patch)
tree99c675a50e41ce908a3f5b79a050afd8111a7a52
parent23826c5063fcfc3cc1b8706d0d7dd2f532789254 (diff)
parent82f2b3edbc3c1b4d2c93ed4d1e66e6a6242fd1bb (diff)
downloadpodman-18713f589c1ed9144d873f2656f2067ebf6f3ba2.tar.gz
podman-18713f589c1ed9144d873f2656f2067ebf6f3ba2.tar.bz2
podman-18713f589c1ed9144d873f2656f2067ebf6f3ba2.zip
Merge pull request #14178 from edsantiago/bloat_fix
bloat check: make more robust
-rwxr-xr-xcontrib/cirrus/runner.sh19
1 files changed, 13 insertions, 6 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh
index c4a714691..1ec18c861 100755
--- a/contrib/cirrus/runner.sh
+++ b/contrib/cirrus/runner.sh
@@ -250,16 +250,23 @@ function _run_altbuild() {
case "$ALT_NAME" in
*Each*)
git fetch origin
- # The check-size script, introduced 2022-03-22 in #13518,
+ # The make-and-check-size script, introduced 2022-03-22 in #13518,
# runs 'make' (the original purpose of this check) against
# each commit, then checks image sizes to make sure that
# none have grown beyond a given limit. That of course
- # requires a baseline, which is why we use '^' to start
- # with the *parent* commit of this PR, not the first commit.
+ # requires a baseline, so our first step is to build the
+ # branch point of the PR.
+ local context_dir savedhead pr_base
context_dir=$(mktemp -d --tmpdir make-size-check.XXXXXXX)
- make build-all-new-commits \
- GIT_BASE_BRANCH=origin/"${DEST_BRANCH}^" \
- MAKE="hack/make-and-check-size $context_dir"
+ savedhead=$(git rev-parse HEAD)
+ # Push to PR base. First run of the script will write size files
+ pr_base=$(git merge-base --fork-point origin/$DEST_BRANCH)
+ git checkout $pr_base
+ hack/make-and-check-size $context_dir
+ # pop back to PR, and run incremental makes. Subsequent script
+ # invocations will compare against original size.
+ git checkout $savedhead
+ git rebase $pr_base -x "hack/make-and-check-size $context_dir"
rm -rf $context_dir
;;
*Windows*)