Skip to content

Commit e2ce885

Browse files
authored
Update Cortex-M Size target (#11399)
### Summary The recent PAL changes (#10675) increased runtime size slightly. This was approved and size targets were updated for the main size jobs. However, I missed the Cortex-M job and am updating here. ### Test plan CI
1 parent deb63ec commit e2ce885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/trunk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
output=$(ls -la ${elf})
263263
arr=($output)
264264
size=${arr[4]}
265-
threshold="102400" # 100KiB
265+
threshold="103068" # ~100KiB
266266
echo "size: $size, threshold: $threshold"
267267
if [[ "$size" -le "$threshold" ]]; then
268268
echo "Success $size <= $threshold"

0 commit comments

Comments
 (0)