Skip to content

Commit

Permalink
tweak deploy test concurrency & fail condition (#66779)
Browse files Browse the repository at this point in the history
  • Loading branch information
ztanner authored Jun 12, 2024
1 parent 0cce20d commit eb6575a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_e2e_deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: true
matrix:
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6]
group: [1/5, 2/5, 3/5, 4/5, 5/5]
with:
afterBuild: NEXT_TEST_MODE=deploy NEXT_EXTERNAL_TESTS_FILTERS="test/deploy-tests-manifest.json" node run-tests.js --timings -g ${{ matrix.group }} -c 2 --type e2e
skipNativeBuild: 'yes'
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
report-failure:
name: report failure to slack
needs: test-deploy
if: ${{ always() && contains(needs.*.result, 'failure') }}
if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}
runs-on: ubuntu-latest
steps:
- name: send webhook
Expand Down

0 comments on commit eb6575a

Please sign in to comment.