From 913e23a4cefd17e6d2fd6fbe6f0ef80b95354e02 Mon Sep 17 00:00:00 2001 From: Andrey Date: Mon, 29 Jul 2024 18:59:15 -0400 Subject: [PATCH] only:post-bootloader.sh --- .../workflows/custom-board-build/action.yaml | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/custom-board-build/action.yaml b/.github/workflows/custom-board-build/action.yaml index 7b05e805cf..d530f29117 100644 --- a/.github/workflows/custom-board-build/action.yaml +++ b/.github/workflows/custom-board-build/action.yaml @@ -144,7 +144,7 @@ runs: run: | : Invoking Post-Checkout Action if [ -f .github/workflows/actions/post-checkout.sh ]; then - bash .github/workflows/actions/post-checkout.sh + bash .github/workflows/actions/post-checkout.sh fi - name: Find out white-label @@ -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