Skip to content

Commit

Permalink
Merge branch 'canary' into 06-11-disable_deploy_tests_for_incompatibl…
Browse files Browse the repository at this point in the history
…e_suites
  • Loading branch information
ztanner committed Jun 12, 2024
2 parents 9600ddb + eb6575a commit 21ddb72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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, 6/6]
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
3 changes: 2 additions & 1 deletion test/deploy-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"suites": {
"test/e2e/app-dir/app-static/app-static.test.ts": {
"failed": [
"app-dir static/dynamic handling new tags have been specified on subsequent fetch should not fetch from memory cache"
"app-dir static/dynamic handling new tags have been specified on subsequent fetch should not fetch from memory cache",
"app-dir static/dynamic handling new tags have been specified on subsequent fetch should not fetch from memory cache after revalidateTag is used"
]
},
"test/e2e/app-dir/metadata/metadata.test.ts": {
Expand Down

0 comments on commit 21ddb72

Please sign in to comment.