Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -878,10 +878,10 @@ jobs:
stepName: 'test-ppr-prod-${{ matrix.group }}'
secrets: inherit

# TODO: remove these jobs once Cache Components is the default
# TODO: Disable these when no more variant are tested
# Manifest generated via: https://gist.github.com/wyattjoh/2ceaebd82a5bcff4819600fd60126431
test-cache-components-integration:
name: test cache components integration
test-variant-integration:
name: test variant integration
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}

Expand All @@ -891,16 +891,16 @@ jobs:
afterBuild: |
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json"
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"

node run-tests.js \
--timings \
--type integration
stepName: 'test-cache-components-integration'
stepName: 'test-variant-integration'
secrets: inherit

test-cache-components-dev:
name: test cache components dev
test-variant-dev:
name: test variant dev
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}

Expand All @@ -913,18 +913,18 @@ jobs:
afterBuild: |
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json"
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"
export NEXT_TEST_MODE=dev

node run-tests.js \
--timings \
-g ${{ matrix.group }} \
--type development
stepName: 'test-cache-components-dev-${{ matrix.group }}'
stepName: 'test-variant-dev-${{ matrix.group }}'
secrets: inherit

test-cache-components-prod:
name: test cache components prod
test-variant-prod:
name: test variant prod
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}

Expand All @@ -937,14 +937,14 @@ jobs:
afterBuild: |
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json"
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"
export NEXT_TEST_MODE=start

node run-tests.js \
--timings \
-g ${{ matrix.group }} \
--type production
stepName: 'test-cache-components-prod-${{ matrix.group }}'
stepName: 'test-variant-prod-${{ matrix.group }}'
secrets: inherit

tests-pass:
Expand All @@ -963,9 +963,9 @@ jobs:
'test-ppr-dev',
'test-ppr-prod',
'test-ppr-integration',
'test-cache-components-dev',
'test-cache-components-prod',
'test-cache-components-integration',
'test-variant-dev',
'test-variant-prod',
'test-variant-integration',
'test-cargo-unit',
'rust-check',
'rustdoc-check',
Expand Down
Loading