@@ -492,50 +492,6 @@ jobs:
492
492
cd packages/nextjs
493
493
yarn test:integration
494
494
495
- # Ember tests are separate from the rest because they are the slowest part of the test suite, and making them a
496
- # separate job allows them to run in parallel with the other tests.
497
- job_ember_tests :
498
- name : Ember (${{ matrix.scenario }}) Tests
499
- needs : [job_get_metadata, job_build]
500
- if : needs.job_get_metadata.outputs.changed_ember == 'true' || github.event_name != 'pull_request'
501
- timeout-minutes : 10
502
- runs-on : ubuntu-20.04
503
- strategy :
504
- fail-fast : false
505
- matrix :
506
- scenario : [ember-release, embroider-optimized, ember-4.0]
507
- steps :
508
- - name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
509
- uses : actions/checkout@v3
510
- with :
511
- ref : ${{ env.HEAD_COMMIT }}
512
- # TODO: removing `fetch-depth` below seems to have no effect, and the commit which added it had no description,
513
- # so it's not clear why it's necessary. That said, right now ember tests are xfail, so it's a little hard to
514
- # tell if it's safe to remove. Once ember tests are fixed, let's try again with it turned off, and if all goes
515
- # well, we can pull it out.
516
- fetch-depth : 0
517
- - name : Set up Node
518
- uses : actions/setup-node@v3
519
- with :
520
- # We support node 14+. If that works, we can safely assume that newer versions will also work.
521
- node-version : ' 14'
522
- - name : Check dependency cache
523
- uses : actions/cache@v3
524
- with :
525
- path : ${{ env.CACHED_DEPENDENCY_PATHS }}
526
- key : ${{ needs.job_build.outputs.dependency_cache_key }}
527
- - name : Check build cache
528
- uses : actions/cache@v3
529
- with :
530
- path : ${{ env.CACHED_BUILD_PATHS }}
531
- key : ${{ env.BUILD_CACHE_KEY }}
532
- - name : Run Ember tests
533
- run : |
534
- cd packages/ember
535
- yarn ember try:one ${{ matrix.scenario }} --skip-cleanup=true
536
- - name : Compute test coverage
537
- uses : codecov/codecov-action@v3
538
-
539
495
job_browser_playwright_tests :
540
496
name : Playwright (${{ matrix.bundle }})${{ (matrix.tracing_only && ' tracing only') || '' }} Tests
541
497
needs : [job_get_metadata, job_build]
@@ -804,7 +760,6 @@ jobs:
804
760
job_browser_playwright_tests,
805
761
job_browser_integration_tests,
806
762
job_remix_integration_tests,
807
- job_ember_tests,
808
763
]
809
764
# Always run this, even if a dependent job failed
810
765
if : always()
0 commit comments