This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch ranger-2.6 in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 957093e977f7f4c4d17e1a195449c65d8768cd54 Author: Abhishek Kumar <[email protected]> AuthorDate: Wed Dec 11 10:26:48 2024 -0800 RANGER-5021: Add timeouts to jobs in CI (#427) set build-8 and build-11 timeout to 60 mins and docker-build timeout to 30 mins. (cherry picked from commit 9d462dde388f3994272c54e8730a0ed1f031992b) --- .github/workflows/maven.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c4183c260..d178fe813 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -35,6 +35,7 @@ env: jobs: build-8: runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v4 - name: Cache for maven dependencies @@ -63,6 +64,7 @@ jobs: needs: - build-8 runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v4 - name: Cache for maven dependencies @@ -91,6 +93,7 @@ jobs: needs: - build-8 runs-on: ubuntu-latest + timeout-minutes: 30 steps: - uses: actions/checkout@v4 - name: Download build-8 artifacts
