This is an automated email from the ASF dual-hosted git repository. yong pushed a commit to branch increase-ci-timeout in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit 2c4337f203b60edd6fbd95efa6c2afb2588d970d Author: Yong Zhang <[email protected]> AuthorDate: Tue Nov 18 17:27:00 2025 +0800 Increase timeout of the ci to avoid cancled by the timeout ### Motivation Increase the CI timeout value. --- .github/workflows/bk-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bk-ci.yml b/.github/workflows/bk-ci.yml index 10cfad1fc2..086c718c44 100644 --- a/.github/workflows/bk-ci.yml +++ b/.github/workflows/bk-ci.yml @@ -209,7 +209,7 @@ jobs: integration-tests: name: Integration Tests runs-on: ubuntu-latest - timeout-minutes: 75 + timeout-minutes: 120 needs: [ 'build-and-license-check' ] if: ${{ needs.build-and-license-check.outputs.docs_only != 'true' }} steps: @@ -303,7 +303,7 @@ jobs: backward-compatibility-tests: name: Backward compatibility tests runs-on: ubuntu-latest - timeout-minutes: 75 + timeout-minutes: 120 needs: [ 'build-and-license-check' ] if: ${{ needs.build-and-license-check.outputs.docs_only != 'true' }} steps:
