Skip to content

Commit

Permalink
add test-integrations success job
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed Apr 18, 2023
1 parent bc630a7 commit 1c8731c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -377,3 +377,21 @@ jobs:
with:
name: ${{ env.TEST_RESULTS_ARTIFACT_NAME }}
path: ${{ env.TEST_RESULTS_DIR }}

test-integrations-success:
needs:
- setup
- generate-envoy-job-matrices
- dev-build
- nomad-integration-test
- vault-integration-test
- envoy-integration-test
- compatibility-integration-test
- upgrade-integration-test
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
if: |
(always() && ! cancelled()) &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
steps:
- run: echo "test-integrations succeeded"

0 comments on commit 1c8731c

Please sign in to comment.