Skip to content

Commit

Permalink
Merge pull request #160 from Wuyunfan-BUPT/ci_write_comment_permissio…
Browse files Browse the repository at this point in the history
…n_separation

feat: 使写write issue无论失败与否都能够运行
  • Loading branch information
Wuyunfan-BUPT authored Aug 28, 2024
2 parents 9098793 + bc8f6c0 commit a5c2358
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pr-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
e2e-java-test:
if: ${{ success() }}
name: Java e2e Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
e2e-go-test:
if: ${{ success() }}
name: GO E2E Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
e2e-cpp-test:
if: ${{ success() }}
name: Cpp E2E Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
e2e-csharp-test:
if: ${{ success() }}
name: Csharp E2E Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
e2e-nodejs-test:
if: ${{ success() }}
name: Nodejs E2E Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -454,7 +454,7 @@ jobs:
e2e-python-test:
if: ${{ success() }}
name: Python E2E Test
needs: [deploy]
needs: [docker, deploy]
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
clean:
if: ${{ always() }}
name: Clean
needs: [deploy, e2e-java-test, e2e-go-test, e2e-cpp-test, e2e-csharp-test, e2e-nodejs-test, e2e-python-test]
needs: [docker, deploy, e2e-java-test, e2e-go-test, e2e-cpp-test, e2e-csharp-test, e2e-nodejs-test, e2e-python-test]
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
Expand Down

0 comments on commit a5c2358

Please sign in to comment.