From 3bb026987522b4cd0353de8a4028a5cd24ee9184 Mon Sep 17 00:00:00 2001 From: Gregory Comer Date: Thu, 5 Jun 2025 11:00:03 -0700 Subject: [PATCH] Update Cortex-M Size target --- .github/workflows/trunk.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trunk.yml b/.github/workflows/trunk.yml index cab558c9b56..3d6397f4d5f 100644 --- a/.github/workflows/trunk.yml +++ b/.github/workflows/trunk.yml @@ -262,7 +262,7 @@ jobs: output=$(ls -la ${elf}) arr=($output) size=${arr[4]} - threshold="102400" # 100KiB + threshold="103068" # ~100KiB echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold"