Skip to content

Commit

Permalink
github-ci: return 0 also on build timeout to allow post ccache
Browse files Browse the repository at this point in the history
succeed also on build timeout to allow ccache to be updated

Signed-off-by: Francesco Pham <[email protected]>
  • Loading branch information
Francesco Pham committed Sep 7, 2024
1 parent fb7e320 commit 973b822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
# a shared ccache is used to speed up the build
# a 5h timeout is set to prevent the job from exeeding the 6h limit and
# allow it to save the ccache and speedup the next run
cd repo && timeout 5h ./build.sh --ccache --product-name rk3568
cd repo && timeout 5h ./build.sh --ccache --product-name rk3568 || true
- name: Archive board image artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 973b822

Please sign in to comment.