Skip to content

Commit 224036e

Browse files
authored
Arm backend: Bump cortex-m size test threshold (#11520)
Size to runtime has grown and this started to fail after some code was improved/added in the "Refactor FlatTensor" change: #11499 and we got ~50 Bytes over the limit. Signed-off-by: Zingo Andersen <[email protected]>
1 parent c12ecbe commit 224036e

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="103068" # ~100KiB
265+
threshold="103268" # ~100KiB
266266
echo "size: $size, threshold: $threshold"
267267
if [[ "$size" -le "$threshold" ]]; then
268268
echo "Success $size <= $threshold"

0 commit comments

Comments
 (0)