From e5fa1b5d2bf6a65f839d4ad730f040a3cea0652c Mon Sep 17 00:00:00 2001 From: Emmett Butler Date: Thu, 26 Mar 2026 10:44:31 -0400 Subject: [PATCH 1/2] tiny increase of lambda layer size limit --- scripts/check_layer_size.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_layer_size.sh b/scripts/check_layer_size.sh index ce67d92d..e2c39aa9 100755 --- a/scripts/check_layer_size.sh +++ b/scripts/check_layer_size.sh @@ -8,7 +8,7 @@ # Compares layer size to threshold, and fails if below that threshold set -e -MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 9 \* 1024) # 9216 KB +MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 9 \* 1024 + 9) # 9216 KB MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 25 \* 1024) # 25600 KB From 4f1e25b64e23b6ac627bb18a1899c3f6830427e7 Mon Sep 17 00:00:00 2001 From: Emmett Butler <723615+emmettbutler@users.noreply.github.com> Date: Thu, 26 Mar 2026 08:04:10 -0700 Subject: [PATCH 2/2] Update scripts/check_layer_size.sh Co-authored-by: Brett Langdon --- scripts/check_layer_size.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_layer_size.sh b/scripts/check_layer_size.sh index e2c39aa9..de9a8c4d 100755 --- a/scripts/check_layer_size.sh +++ b/scripts/check_layer_size.sh @@ -8,7 +8,7 @@ # Compares layer size to threshold, and fails if below that threshold set -e -MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 9 \* 1024 + 9) # 9216 KB +MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 9 \* 1024 + 15) # 9231 KB MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 25 \* 1024) # 25600 KB