Skip to content

Commit

Permalink
Remove not needed check-e2e-test-suite-completion from .github/workfl…
Browse files Browse the repository at this point in the history
…ows/on-pull-request-commit.yml
  • Loading branch information
Marcin-Radecki committed Oct 10, 2023
1 parent 8e96315 commit 13a0553
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/on-pull-request-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

run-e2e-finalization-test:
name: Run e2e finalization test
needs: [ build-test-node-image-and-e2e-client-image ]
needs: [build-test-node-image-and-e2e-client-image]
runs-on: ubuntu-20.04
steps:
- name: Checkout source code
Expand All @@ -54,15 +54,3 @@ jobs:
with:
test-case: finalization::finalization
timeout-minutes: 3

check-e2e-test-suite-completion:
needs: [run-e2e-tests]
name: Check e2e test suite completion
if: ${{ !cancelled() }}
runs-on: ubuntu-20.04
steps:
- name: All e2e tests completed
run: |
# due to the fact GitHub treats skipped jobs as success, and when any of dependant
# jobs fail, this check will be skipped, we need to check status manually
jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'

0 comments on commit 13a0553

Please sign in to comment.