use make output option

This commit is contained in:
David Holdeman 2024-03-22 06:51:22 -05:00 committed by rusefillc
parent fb66699cd8
commit 735d10243c
2 changed files with 3 additions and 3 deletions

View File

@ -257,9 +257,9 @@ jobs:
working-directory: ./firmware/ working-directory: ./firmware/
run: | run: |
if [ "$full" == "true" ]; then if [ "$full" == "true" ]; then
bash bin/compile.sh ${{env.BOARD_META_PATH}} bundles bash bin/compile.sh ${{env.BOARD_META_PATH}} bundles --output-sync=recurse
else else
bash bin/compile.sh ${{env.BOARD_META_PATH}} all deliver/rusefi.dfu deliver/rusefi.bin bash bin/compile.sh ${{env.BOARD_META_PATH}} --output-sync=recurse all deliver/rusefi.dfu deliver/rusefi.bin
fi fi
- name: Upload Bundle - name: Upload Bundle

View File

@ -201,7 +201,7 @@ runs:
if [ "$RUN_SIMULATOR" == "true" ]; then if [ "$RUN_SIMULATOR" == "true" ]; then
TARGETS=("../simulator/build/rusefi_simulator" "../java_tools/tune-tools/build/libs/tune-tools-all.jar") TARGETS=("../simulator/build/rusefi_simulator" "../java_tools/tune-tools/build/libs/tune-tools-all.jar")
fi fi
bash bin/compile.sh $BOARD_META_PATH ${{inputs.artifacts}} ${{inputs.uploads}} ${TARGETS[@]} bash bin/compile.sh $BOARD_META_PATH --output-sync=recurse ${{inputs.artifacts}} ${{inputs.uploads}} ${TARGETS[@]}
- name: Upload Bundle - name: Upload Bundle
if: ${{ contains(inputs.uploads, 'bundles') }} if: ${{ contains(inputs.uploads, 'bundles') }}