Skip to content

Commit

Permalink
ci: Fix integration-ok when build fails (linkerd#12307)
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r authored Mar 21, 2024
1 parent de65aaa commit c970ceb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,14 @@ jobs:
- run: gh workflow run rerun.yml -F 'run_id=${{ github.run_id }}' --ref "$REF"

integrations-ok:
needs: [test-core, test-policy, test-ext, test-viz, test-multicluster]
needs:
[build-ok, test-core, test-policy, test-ext, test-viz, test-multicluster]
if: always()
runs-on: ubuntu-22.04
steps:
- name: Results
run: |
echo 'needs.build-ok.result: ${{ needs.build-ok.result }}'
echo 'needs.test-core.result: ${{ needs.test-core.result }}'
echo 'needs.test-policy.result: ${{ needs.test-policy.result }}'
echo 'needs.test-ext.result: ${{ needs.test-ext.result }}'
Expand Down

0 comments on commit c970ceb

Please sign in to comment.