Skip to content

Commit ba88feb

Browse files
committed
Don't block builds on podman-testing growing in size
Signed-off-by: Miloslav Trmač <[email protected]>
1 parent e4e3ac0 commit ba88feb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hack/make-and-check-size

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ for bin in bin/*;do
111111
delta_size=$(( size - size_orig ))
112112

113113
printf "%-20s size=%9d delta=%6d\n" $bin $size $delta_size
114+
if [[ "$bin" = bin/podman-testing ]]; then
115+
continue # We compute / list this for completeness, but size does not matter to users.
116+
fi
114117
if [[ $delta_size -gt $MAX_BIN_GROWTH ]]; then
115118
separator=$(printf "%.0s*" {1..75}) # row of stars, for highlight
116119
echo "$separator"

0 commit comments

Comments
 (0)