de-coupling for sake of GHA logs readability
This commit is contained in:
parent
1af000e4e7
commit
fb59e17462
|
@ -178,6 +178,20 @@ runs:
|
|||
echo "Not a repository"
|
||||
fi
|
||||
|
||||
- name: Handle configs separately just to make github logs more readable
|
||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||
shell: bash
|
||||
run: |
|
||||
bash bin/compile.sh $BOARD_META_PATH config
|
||||
|
||||
- name: Building simulator separately just to make github logs more readable
|
||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "$RUN_SIMULATOR" == "true" ]; then
|
||||
bash bin/compile.sh $BOARD_META_PATH ../simulator/build/rusefi_simulator
|
||||
fi
|
||||
|
||||
- name: Build Firmware
|
||||
working-directory: ${{inputs.rusefi_dir}}/firmware
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue