File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
hw/bsp/stm32f4/boards/stm32f407blackvet Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ jobs:
111111
112112 # ---------------------------------------
113113 # Build IAR on HFP self-hosted
114+ # Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
114115 # ---------------------------------------
115116 arm-iar :
116117 if : github.repository_owner == 'hathach' && github.event_name == 'push'
Original file line number Diff line number Diff line change 9090 # ---------------------------------------
9191 # Hardware in the loop (HIL)
9292 # self-hosted by HFP, build with IAR toolchain, for attached hardware checkout test/hil/hfp.json
93+ # Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
9394 # ---------------------------------------
9495 hil-hfp :
95- if : github.repository_owner == 'hathach'
96+ if : github.repository_owner == 'hathach' && github.event.pull_request.head.repo.fork == false
9697 runs-on : [self-hosted, Linux, X64, hifiphile]
9798 env :
9899 IAR_LMS_BEARER_TOKEN : ${{ secrets.IAR_LMS_BEARER_TOKEN }}
Original file line number Diff line number Diff line change 11CFLAGS += -DSTM32F407xx
22
33# GCC
4- GCC_SRC_S += $(ST_CMSIS ) /Source/Templates/gcc/startup_stm32f407xx.s
5- GCC_LD_FILE = $(BOARD_PATH ) /STM32F407VETX_FLASH .ld
4+ SRC_S_GCC += $(ST_CMSIS ) /Source/Templates/gcc/startup_stm32f407xx.s
5+ LD_FILE_GCC = $(BOARD_PATH ) /STM32F407VETx_FLASH .ld
66
77# IAR
8- IAR_SRC_S += $(ST_CMSIS ) /Source/Templates/iar/startup_stm32f407xx.s
9- IAR_LD_FILE = $(ST_CMSIS ) /Source/Templates/iar/linker/stm32f407xx_flash.icf
8+ SRC_S_IAR += $(ST_CMSIS ) /Source/Templates/iar/startup_stm32f407xx.s
9+ LD_FILE_IAR = $(ST_CMSIS ) /Source/Templates/iar/linker/stm32f407xx_flash.icf
1010
1111
1212# For flash-jlink target
You can’t perform that action at this time.
0 commit comments