Skip to content

Commit

Permalink
Update BPI-r4_build.yaml
Browse files Browse the repository at this point in the history
Quick fix for build loop retval. Not a good variant, should make better later.
  • Loading branch information
N-Storm authored Oct 4, 2024
1 parent 42068c4 commit 7dc9c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/BPI-r4_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Download dependencies
run: make -j$(($(nproc)+1)) download
- name: Build the firmware image
run: ntry=1; while [[ $ntry -le 3 ]]; do make -j$(($(nproc)+1)) world && ntry=255 || (( ntry++ )); [[ $ntry -eq 4 ]] && exit 255; done
run: ntry=1; while [[ $ntry -le 3 ]]; do make -j$(($(nproc)+1)) world && ntry=5 || (( ntry++ )); [[ $ntry -eq 4 ]] && exit 255; true; done
- name: Package output
run: tar -cvf bpi_r4-images.tar bin/targets/mediatek/filogic
- name: Upload artifacts
Expand Down

0 comments on commit 7dc9c8a

Please sign in to comment.