Merge pull request #2902 from hathach/skip-iar-on-fork

skip iar build with forked pr
This commit is contained in:
Ha Thach
2024-12-11 16:19:22 +07:00
committed by GitHub

View File

@@ -20,7 +20,6 @@ jobs:
BUILDSYSTEM_TOOLCHAIN=(
"cmake arm-clang"
"cmake arm-iar"
"make aarch64-gcc"
"make arm-gcc"
"make msp430-gcc"
@@ -29,6 +28,11 @@ jobs:
"cmake esp-idf"
)
# only build IAR if not forked PR, since IAR token is not shared
if [ -z $CIRCLE_PR_USERNAME ]; then
BUILDSYSTEM_TOOLCHAIN+=("cmake arm-iar")
fi
RESOURCE_LARGE='["nrf", "imxrt", "stm32f4", "stm32h7"]'
gen_build_entry() {