Skip to content

Commit

Permalink
Merge pull request #2902 from hathach/skip-iar-on-fork
Browse files Browse the repository at this point in the history
skip iar build with forked pr
  • Loading branch information
hathach authored Dec 11, 2024
2 parents f0dd198 + 62f8aac commit 7c7b30f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
BUILDSYSTEM_TOOLCHAIN=(
"cmake arm-clang"
"cmake arm-iar"
"make aarch64-gcc"
"make arm-gcc"
"make msp430-gcc"
Expand All @@ -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() {
Expand Down

0 comments on commit 7c7b30f

Please sign in to comment.