skip iar build with forked pr

This commit is contained in:
hathach 2024-12-11 15:52:43 +07:00
parent cb22301f91
commit 62f8aac382
No known key found for this signature in database
GPG Key ID: 26FAB84F615C3C52

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() {