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"