only:post-bootloader.sh
This commit is contained in:
parent
9b5f0244bf
commit
913e23a4ce
|
@ -144,7 +144,7 @@ runs:
|
||||||
run: |
|
run: |
|
||||||
: Invoking Post-Checkout Action
|
: Invoking Post-Checkout Action
|
||||||
if [ -f .github/workflows/actions/post-checkout.sh ]; then
|
if [ -f .github/workflows/actions/post-checkout.sh ]; then
|
||||||
bash .github/workflows/actions/post-checkout.sh
|
bash .github/workflows/actions/post-checkout.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Find out white-label
|
- name: Find out white-label
|
||||||
|
@ -296,6 +296,25 @@ runs:
|
||||||
echo DONE: simulator
|
echo DONE: simulator
|
||||||
fi
|
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
|
- name: Build Firmware
|
||||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in New Issue