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:
rusefillc 2022-05-25 10:44:34 -04:00
parent e0da9e1c37
commit c7aa6f3d43
3 changed files with 5 additions and 2 deletions

View File

@ -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:

View File

@ -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'

View File

@ -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)