From f84dd2da51d61fab7b65a6d8dc7ed6d482aad698 Mon Sep 17 00:00:00 2001 From: Digant Desai Date: Fri, 1 Aug 2025 03:55:51 -0700 Subject: [PATCH] Cortex-m Size bump by 1.5KiB Tiny (236b) overflow after #12987 which adds safety related checks. Failure - https://github.com/pytorch/executorch/actions/runs/16622225895/job/47029216900#step:15:17147 --- .github/workflows/trunk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trunk.yml b/.github/workflows/trunk.yml index 7cfd0ac5fc6..a67ce777e19 100644 --- a/.github/workflows/trunk.yml +++ b/.github/workflows/trunk.yml @@ -285,12 +285,12 @@ jobs: setup_script_args="" if [[ ${{ matrix.os}} == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- - threshold="109000" + threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ ${{ matrix.os}} == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- - threshold="135000" + threshold="135168" # 132 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection ${{ matrix.os }}"