Skip to content

Commit afa02a8

Browse files
vpantacopybara-github
authored andcommitted
Increase allowed size for install base pre-[email protected] upgrade
bazelbuild#15145 bumps the install base to just over 311MB, so we need to update the allowable size before that `third_party` change gets merged Closes bazelbuild#15182. PiperOrigin-RevId: 439782557
1 parent 53b9cb8 commit afa02a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/shell/integration/minimal_jdk_test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ export BAZEL_SUFFIX="_jdk_minimal"
4242
source "$(rlocation "io_bazel/src/test/shell/integration_test_setup.sh")" \
4343
|| { echo "integration_test_setup.sh not found!" >&2; exit 1; }
4444

45-
# Bazel's install base is < 311MB with minimal JDK and > 315MB with an all
45+
# Bazel's install base is < 312MB with minimal JDK and > 315MB with an all
4646
# modules JDK.
47-
function test_size_less_than_311MB() {
47+
function test_size_less_than_312MB() {
4848
bazel info
4949
ib=$(bazel info install_base)
5050
size=$(du -s "$ib" | cut -d\ -f1)
51-
maxsize=$((1024*311))
51+
maxsize=$((1024*312))
5252
if [ $size -gt $maxsize ]; then
5353
echo "$ib was too big:" 1>&2
5454
du -a "$ib" 1>&2

0 commit comments

Comments
 (0)