From ba88febf33465c62b641c0fac85be982d280df35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Thu, 27 Mar 2025 20:04:51 +0100 Subject: [PATCH] Don't block builds on podman-testing growing in size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miloslav Trmač --- hack/make-and-check-size | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/make-and-check-size b/hack/make-and-check-size index 5b0021d126..fa9a02eda7 100755 --- a/hack/make-and-check-size +++ b/hack/make-and-check-size @@ -111,6 +111,9 @@ for bin in bin/*;do delta_size=$(( size - size_orig )) printf "%-20s size=%9d delta=%6d\n" $bin $size $delta_size + if [[ "$bin" = bin/podman-testing ]]; then + continue # We compute / list this for completeness, but size does not matter to users. + fi if [[ $delta_size -gt $MAX_BIN_GROWTH ]]; then separator=$(printf "%.0s*" {1..75}) # row of stars, for highlight echo "$separator"