only:post-bootloader.sh
This commit is contained in:
parent
9b5f0244bf
commit
913e23a4ce
|
@ -296,6 +296,25 @@ runs:
|
|||
echo DONE: simulator
|
||||
fi
|
||||
|
||||
- name: Building bootloader separately
|
||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||
if: ${{ contains(inputs.artifacts, 'bootloader') }}
|
||||
shell: bash
|
||||
run: |
|
||||
: Building bootloader separately
|
||||
echo Building bootloader...
|
||||
bash bin/compile.sh $BOARD_META_PATH bootloader
|
||||
echo DONE: bootloader
|
||||
ls -l bootloader/blbuild
|
||||
|
||||
- name: Invoking Post-bootloader Action
|
||||
shell: bash
|
||||
run: |
|
||||
: Invoking Post-Checkout Action
|
||||
if [ -f .github/workflows/actions/post-bootloader.sh ]; then
|
||||
bash .github/workflows/actions/post-bootloader.sh
|
||||
fi
|
||||
|
||||
- name: Build Firmware
|
||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue