-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hotfix][Zeta] Fix the problem of unstable job status (#5450)
- Loading branch information
1 parent
5d4b319
commit 592ee00
Showing
23 changed files
with
763 additions
and
1,236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
dead-link: | ||
name: Dead links | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo npm install -g [email protected] | ||
|
@@ -183,6 +183,7 @@ jobs: | |
- name: Make unit test modules | ||
id: ut-modules | ||
timeout-minutes: 60 | ||
if: ${{ steps.filter.outputs.api == 'false' && (steps.engine-modules.outputs.modules != '' || steps.cv2-modules.outputs.modules != '') }} | ||
run: | | ||
modules='${{ steps.engine-modules.outputs.modules }}${{ steps.cv2-modules.outputs.modules }}' | ||
|
@@ -212,6 +213,7 @@ jobs: | |
- name: Make integration test modules | ||
id: it-modules | ||
timeout-minutes: 60 | ||
if: ${{ steps.filter.outputs.api == 'false' && (steps.engine-modules.outputs.modules != '' || steps.cv2-modules.outputs.modules != '' || steps.cv2-e2e-modules.outputs.modules != '' || steps.cv2-flink-e2e-modules.outputs.modules != '' || steps.cv2-spark-e2e-modules.outputs.modules != '' || steps.engine-e2e-modules.outputs.modules != '') }} | ||
run: | | ||
modules='${{ steps.cv2-e2e-modules.outputs.modules }}${{ steps.cv2-flink-e2e-modules.outputs.modules }}${{ steps.cv2-spark-e2e-modules.outputs.modules }}${{ steps.engine-e2e-modules.outputs.modules }}${{ steps.engine-modules.outputs.modules }}${{ steps.cv2-modules.outputs.modules }}' | ||
|
@@ -520,7 +522,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 30 | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
@@ -544,7 +546,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 30 | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.