From 09168abdec4c3aff6f930fbd74ecea2ca406827b Mon Sep 17 00:00:00 2001 From: Jacob Szwejbka Date: Mon, 21 Apr 2025 14:55:47 -0700 Subject: [PATCH] Update size threshhold (#10214) Summary: These are the current actual threshholds Reviewed By: lucylq Differential Revision: D73056265 --- .github/workflows/pull.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 1a083365220..ddfd6f1b3ed 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -399,7 +399,7 @@ jobs: size=${arr[4]} # threshold=48120 on devserver with gcc11.4 # todo(lfq): update once binary size is below 50kb. - threshold="51504" + threshold="51408" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else @@ -436,7 +436,7 @@ jobs: size=${arr[4]} # threshold=48120 on devserver with gcc11.4 # todo(lfq): update once binary size is below 50kb. - threshold="51784" + threshold="47552" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else