only:post-bootloader.sh

This commit is contained in:
Andrey 2024-07-29 18:59:15 -04:00
parent 9b5f0244bf
commit 913e23a4ce
1 changed files with 20 additions and 1 deletions

View File

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