Skip to content

Commit c14e261

Browse files
committed
"variant" -> "experimental"
1 parent 83c7b5d commit c14e261

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/build_and_test.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -878,10 +878,10 @@ jobs:
878878
stepName: 'test-ppr-prod-${{ matrix.group }}'
879879
secrets: inherit
880880

881-
# TODO: Disable these when no more variant are tested
881+
# TODO: Disable these when no more experiments are tested
882882
# Manifest generated via: https://gist.github.com/wyattjoh/2ceaebd82a5bcff4819600fd60126431
883-
test-variant-integration:
884-
name: test variant integration
883+
test-experimental-integration:
884+
name: test experimental integration
885885
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
886886
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
887887

@@ -891,16 +891,16 @@ jobs:
891891
afterBuild: |
892892
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
893893
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
894-
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"
894+
export NEXT_EXTERNAL_TESTS_FILTERS="test/experimental-tests-manifest.json"
895895
896896
node run-tests.js \
897897
--timings \
898898
--type integration
899-
stepName: 'test-variant-integration'
899+
stepName: 'test-experimental-integration'
900900
secrets: inherit
901901

902-
test-variant-dev:
903-
name: test variant dev
902+
test-experimental-dev:
903+
name: test experimental dev
904904
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
905905
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
906906

@@ -913,18 +913,18 @@ jobs:
913913
afterBuild: |
914914
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
915915
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
916-
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"
916+
export NEXT_EXTERNAL_TESTS_FILTERS="test/experimental-tests-manifest.json"
917917
export NEXT_TEST_MODE=dev
918918
919919
node run-tests.js \
920920
--timings \
921921
-g ${{ matrix.group }} \
922922
--type development
923-
stepName: 'test-variant-dev-${{ matrix.group }}'
923+
stepName: 'test-experimental-dev-${{ matrix.group }}'
924924
secrets: inherit
925925

926-
test-variant-prod:
927-
name: test variant prod
926+
test-experimental-prod:
927+
name: test experimental prod
928928
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
929929
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
930930

@@ -937,14 +937,14 @@ jobs:
937937
afterBuild: |
938938
export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests
939939
export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true
940-
export NEXT_EXTERNAL_TESTS_FILTERS="test/variant-tests-manifest.json"
940+
export NEXT_EXTERNAL_TESTS_FILTERS="test/experimental-tests-manifest.json"
941941
export NEXT_TEST_MODE=start
942942
943943
node run-tests.js \
944944
--timings \
945945
-g ${{ matrix.group }} \
946946
--type production
947-
stepName: 'test-variant-prod-${{ matrix.group }}'
947+
stepName: 'test-experimental-prod-${{ matrix.group }}'
948948
secrets: inherit
949949

950950
tests-pass:
@@ -963,9 +963,9 @@ jobs:
963963
'test-ppr-dev',
964964
'test-ppr-prod',
965965
'test-ppr-integration',
966-
'test-variant-dev',
967-
'test-variant-prod',
968-
'test-variant-integration',
966+
'test-experimental-dev',
967+
'test-experimental-prod',
968+
'test-experimental-integration',
969969
'test-cargo-unit',
970970
'rust-check',
971971
'rustdoc-check',

0 commit comments

Comments
 (0)