From eea93ab114dcae2b68cacd6e10caa1c508c0ce97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?jordan=20gonz=C3=A1lez?= <30836115+duncanista@users.noreply.github.com> Date: Fri, 15 Nov 2024 15:28:02 -0500 Subject: [PATCH] update numbers, sadly --- .gitlab/scripts/check_layer_size.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/scripts/check_layer_size.sh b/.gitlab/scripts/check_layer_size.sh index 573d3884a..c53615cb6 100755 --- a/.gitlab/scripts/check_layer_size.sh +++ b/.gitlab/scripts/check_layer_size.sh @@ -14,8 +14,8 @@ if [ -z "$LAYER_FILE" ]; then exit 1 fi -MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 19 \* 1024) # 19 MB, amd64 is 19, while arm64 is 15 -MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 49 \* 1024) # 49 MB, amd is 49, while arm64 is 48 +MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 20 \* 1024) # 20 MB, amd64 is 19, while arm64 is 18 +MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 50 \* 1024) # 50 MB, amd is 50, while arm64 is 47 LAYERS_DIR=".layers"