console uses .hex Looks like I broke MRE and Proteus with OpenBLT #4199
steps towards proper script in HW CI
This commit is contained in:
parent
2f1d4560d4
commit
6a077a632a
|
@ -369,6 +369,7 @@ jobs:
|
|||
name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||
path: ./artifacts/rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||
|
||||
# here we build f407-discovery
|
||||
build-primary-bundle:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
|
||||
- name: Build Firmware
|
||||
working-directory: ./firmware
|
||||
run: make -j6 EXTRA_PARAMS="-DHARDWARE_CI" PROJECT_BOARD=${{matrix.board}}
|
||||
run: make -j6 EXTRA_2_PARAMS="-DHARDWARE_CI" PROJECT_BOARD=${{matrix.board}}
|
||||
|
||||
- name: Check for STLINK
|
||||
run: lsusb | grep 'ST-LINK\|STLINK'
|
||||
|
|
|
@ -46,8 +46,10 @@ endif
|
|||
|
||||
|
||||
# Compiler options here.
|
||||
# yes we have two kinds of EXTRA_*PARAMS so that we can define those in two different places independently
|
||||
#
|
||||
ifeq ($(USE_OPT),)
|
||||
USE_OPT = $(EXTRA_PARAMS) $(DEBUG_LEVEL_OPT) $(RFLAGS) -fomit-frame-pointer -falign-functions=16 -fsingle-precision-constant
|
||||
USE_OPT = $(EXTRA_PARAMS) $(EXTRA_2_PARAMS) $(DEBUG_LEVEL_OPT) $(RFLAGS) -fomit-frame-pointer -falign-functions=16 -fsingle-precision-constant
|
||||
endif
|
||||
|
||||
# EFI_UNIT_TEST determines if we are running in a unit test (hide things from hw/sim)
|
||||
|
|
Loading…
Reference in New Issue