This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new ee238544c [Minor] improvement(CI): Fix backend tests fail occasionally
as a result of CI pipeline timeout. (#4671)
ee238544c is described below
commit ee238544c445acecdbdab6cfb1d30af11c3e6d66
Author: Qi Yu <[email protected]>
AuthorDate: Mon Aug 26 13:56:45 2024 +0800
[Minor] improvement(CI): Fix backend tests fail occasionally as a result of
CI pipeline timeout. (#4671)
### What changes were proposed in this pull request?
Increase the timeout time for backend integration tests from 60 minutes
to 90 minutes
### Why are the changes needed?
Accordingly tests from
https://github.com/apache/gravitino/actions/runs/10552034338/job/29230290884?pr=4260,
the backend integration could take up to 60 minutes, which is more than
the maximum time allowed.
<img width="1955" alt="image"
src="https://github.com/user-attachments/assets/d19aa313-9ecb-4b3b-b00a-218b804d9400">
**The root cause could be that MySQL's backend is relatively slow in
some cases, so more tests are needed for information needs.**
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
N/A.
---
.github/workflows/backend-integration-test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/backend-integration-test.yml
b/.github/workflows/backend-integration-test.yml
index 3be304bb4..befffcac2 100644
--- a/.github/workflows/backend-integration-test.yml
+++ b/.github/workflows/backend-integration-test.yml
@@ -55,7 +55,7 @@ jobs:
needs: changes
if: (github.event_name == 'push' && needs.changes.outputs.source_changes
== 'true')
runs-on: ubuntu-latest
- timeout-minutes: 60
+ timeout-minutes: 90
strategy:
matrix:
# Integration test for AMD64 architecture
@@ -124,7 +124,7 @@ jobs:
needs: changes
if: (github.event_name == 'pull_request' &&
needs.changes.outputs.source_changes == 'true')
runs-on: ubuntu-latest
- timeout-minutes: 60
+ timeout-minutes: 90
strategy:
matrix:
# Integration test for AMD64 architecture