Skip to content

Commit 6edd49d

Browse files
Temporarily bump GCC binary size limit (#20746)
Summary: - Temporarily bump `test-binary-size-linux-gcc` threshold from 48500 to 52168 bytes. - Update the threshold comment to the current failing main size from 2026-07-06. Context: - Main `pull.yml` run failed `test-binary-size-linux-gcc` with `Fail 52168 > 48500`: https://github.com/pytorch/executorch/actions/runs/28769660420/job/85300700114 - The current main run at `4dc1b5b574` shows the same GCC binary-size job failing while clang and ARM size jobs pass: https://github.com/pytorch/executorch/actions/runs/28810097175 Test: - `git diff --check -- .github/workflows/pull.yml` - Commit hook lintrunner: no lint issues Authored with Claude.
1 parent b32c2c3 commit 6edd49d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pull.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,8 @@ jobs:
534534
output=$(ls -la cmake-out/test/size_test)
535535
arr=($output)
536536
size=${arr[4]}
537-
# Current CI size: 48008 (gcc9-nopytorch, 2026-03-06)
538-
threshold="48500"
537+
# Current CI size: 52168 (gcc9-nopytorch, 2026-07-06)
538+
threshold="52168"
539539
if [[ "$size" -le "$threshold" ]]; then
540540
echo "Success $size <= $threshold"
541541
else

0 commit comments

Comments
 (0)