From 973b822b8c3b9857e1cb11876cdc40228970bd66 Mon Sep 17 00:00:00 2001 From: Francesco Pham Date: Sat, 7 Sep 2024 12:24:00 +0200 Subject: [PATCH] github-ci: return 0 also on build timeout to allow post ccache succeed also on build timeout to allow ccache to be updated Signed-off-by: Francesco Pham --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0d3e373..9852715 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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