|
|
name: build-and-test |
|
|
|
|
|
on: |
|
|
push: |
|
|
branches: ['canary'] |
|
|
pull_request: |
|
|
types: [opened, synchronize] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
env: |
|
|
NODE_MAINTENANCE_VERSION: 18 |
|
|
NODE_LTS_VERSION: 20 |
|
|
|
|
|
jobs: |
|
|
optimize-ci: |
|
|
uses: ./.github/workflows/graphite_ci_optimizer.yml |
|
|
secrets: inherit |
|
|
|
|
|
changes: |
|
|
name: Determine changes |
|
|
runs-on: ubuntu-latest |
|
|
permissions: |
|
|
contents: read |
|
|
steps: |
|
|
- uses: actions/checkout@v4 |
|
|
with: |
|
|
fetch-depth: 25 |
|
|
|
|
|
- name: check for docs only change |
|
|
id: docs-change |
|
|
run: | |
|
|
echo "DOCS_ONLY<<EOF" >> $GITHUB_OUTPUT; |
|
|
echo "$(node scripts/run-for-change.js --not --type docs --exec echo 'false')" >> $GITHUB_OUTPUT; |
|
|
echo 'EOF' >> $GITHUB_OUTPUT |
|
|
|
|
|
- name: check for release |
|
|
id: is-release |
|
|
run: | |
|
|
RELEASE_CHECK=$(node ./scripts/check-is-release.js 2> /dev/null || :) |
|
|
if [[ $RELEASE_CHECK == "new-release" || $RELEASE_CHECK == v* ]]; |
|
|
then |
|
|
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT |
|
|
else |
|
|
echo "IS_RELEASE=false" >> $GITHUB_OUTPUT |
|
|
fi |
|
|
|
|
|
outputs: |
|
|
docs-only: ${{ steps.docs-change.outputs.DOCS_ONLY != 'false' }} |
|
|
is-release: ${{ steps.is-release.outputs.IS_RELEASE == 'true' }} |
|
|
rspack: >- |
|
|
${{ |
|
|
github.event_name == 'pull_request' && |
|
|
contains(github.event.pull_request.labels.*.name, 'Rspack') |
|
|
}} |
|
|
|
|
|
build-native: |
|
|
name: build-native |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
needs: ['changes'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
with: |
|
|
skipInstallBuild: 'yes' |
|
|
stepName: 'build-native' |
|
|
secrets: inherit |
|
|
|
|
|
build-native-windows: |
|
|
name: build-native-windows |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
needs: ['changes'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
with: |
|
|
skipInstallBuild: 'yes' |
|
|
stepName: 'build-native-windows' |
|
|
runs_on_labels: '["windows","self-hosted","x64"]' |
|
|
buildNativeTarget: 'x86_64-pc-windows-msvc' |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
build-next: |
|
|
name: build-next |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
skipNativeBuild: 'yes' |
|
|
stepName: 'build-next' |
|
|
secrets: inherit |
|
|
|
|
|
lint: |
|
|
name: lint |
|
|
needs: ['build-next'] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
skipNativeBuild: 'yes' |
|
|
skipNativeInstall: 'yes' |
|
|
afterBuild: | |
|
|
pnpm lint-no-typescript |
|
|
pnpm check-examples |
|
|
pnpm validate-externals-doc |
|
|
stepName: 'lint' |
|
|
secrets: inherit |
|
|
|
|
|
validate-docs-links: |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
- uses: actions/checkout@v4 |
|
|
- uses: actions/setup-node@v4 |
|
|
with: |
|
|
node-version: 18 |
|
|
- name: Setup corepack |
|
|
run: | |
|
|
npm i -g corepack@0.31 |
|
|
corepack enable |
|
|
- name: 'Run link checker' |
|
|
run: node ./.github/actions/validate-docs-links/dist/index.js |
|
|
env: |
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
|
|
check-types-precompiled: |
|
|
name: types and precompiled |
|
|
needs: ['changes', 'build-native', 'build-next'] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: pnpm types-and-precompiled |
|
|
stepName: 'types-and-precompiled' |
|
|
secrets: inherit |
|
|
|
|
|
test-cargo-unit: |
|
|
name: test cargo unit |
|
|
needs: ['changes', 'build-next'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
needsRust: 'yes' |
|
|
needsNextest: 'yes' |
|
|
skipNativeBuild: 'yes' |
|
|
afterBuild: pnpm dlx turbo@${TURBO_VERSION} run test-cargo-unit |
|
|
mold: 'yes' |
|
|
stepName: 'test-cargo-unit' |
|
|
secrets: inherit |
|
|
|
|
|
test-bench: |
|
|
name: test cargo benches |
|
|
needs: ['optimize-ci', 'changes', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/test-turbopack-rust-bench-test.yml |
|
|
secrets: inherit |
|
|
|
|
|
rust-check: |
|
|
name: rust check |
|
|
needs: ['changes', 'build-next'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
needsRust: 'yes' |
|
|
skipInstallBuild: 'yes' |
|
|
skipNativeBuild: 'yes' |
|
|
afterBuild: pnpm dlx turbo@${TURBO_VERSION} run rust-check |
|
|
stepName: 'rust-check' |
|
|
secrets: inherit |
|
|
|
|
|
rustdoc-check: |
|
|
name: rustdoc check |
|
|
needs: ['changes', 'build-next'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
needsRust: 'yes' |
|
|
skipInstallBuild: 'yes' |
|
|
skipNativeBuild: 'yes' |
|
|
afterBuild: ./scripts/deploy-turbopack-docs.sh |
|
|
stepName: 'rustdoc-check' |
|
|
secrets: inherit |
|
|
|
|
|
ast-grep: |
|
|
needs: ['changes', 'build-next'] |
|
|
runs-on: ubuntu-latest |
|
|
name: ast-grep lint |
|
|
steps: |
|
|
- uses: actions/checkout@v4 |
|
|
- name: ast-grep lint step |
|
|
uses: ast-grep/action@v1.5.0 |
|
|
with: |
|
|
|
|
|
version: 0.31.0 |
|
|
|
|
|
devlow-bench: |
|
|
name: Run devlow benchmarks |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
mode: |
|
|
- '--turbopack=false' |
|
|
- '--turbopack=true' |
|
|
selector: |
|
|
- '--scenario=heavy-npm-deps-dev --page=homepage' |
|
|
- '--scenario=heavy-npm-deps-build --page=homepage' |
|
|
- '--scenario=heavy-npm-deps-build-turbo-cache-enabled --page=homepage' |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
./node_modules/.bin/devlow-bench ./scripts/devlow-bench.mjs \ |
|
|
--datadog=ubuntu-latest-16-core \ |
|
|
${{ matrix.mode }} \ |
|
|
${{ matrix.selector }} |
|
|
stepName: 'devlow-bench-${{ matrix.mode }}-${{ matrix.selector }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-devlow: |
|
|
name: test devlow package |
|
|
needs: ['optimize-ci', 'changes'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
skipNativeBuild: 'yes' |
|
|
stepName: 'test-devlow' |
|
|
afterBuild: | |
|
|
pnpm run --filter=devlow-bench test |
|
|
secrets: inherit |
|
|
|
|
|
test-turbopack-dev: |
|
|
name: test turbopack dev |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
exclude: |
|
|
|
|
|
- react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-react-18-tests') && '18.3.1' }} |
|
|
group: [1/5, 2/5, 3/5, 4/5, 5/5] |
|
|
|
|
|
react: ['', '18.3.1'] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export IS_TURBOPACK_TEST=1 |
|
|
export TURBOPACK_DEV=1 |
|
|
export NEXT_TEST_MODE=dev |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
|
|
|
node run-tests.js \ |
|
|
--test-pattern '^(test\/(development|e2e))/.*\.test\.(js|jsx|ts|tsx)$' \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} |
|
|
stepName: 'test-turbopack-dev-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-turbopack-integration: |
|
|
name: test turbopack development integration |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
react: [''] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export IS_TURBOPACK_TEST=1 |
|
|
export TURBOPACK_DEV=1 |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type integration |
|
|
stepName: 'test-turbopack-integration-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-turbopack-production: |
|
|
name: test turbopack production |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
exclude: |
|
|
|
|
|
- react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-react-18-tests') && '18.3.1' }} |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
react: ['', '18.3.1'] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export IS_TURBOPACK_TEST=1 |
|
|
export TURBOPACK_BUILD=1 |
|
|
export NEXT_TEST_MODE=start |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
# TODO(PACK-4578): Remove |
|
|
export TURBOPACK_TEMP_DISABLE_DUPLICATE_MODULES_CHECK=1 |
|
|
|
|
|
node run-tests.js --timings -g ${{ matrix.group }} --type production |
|
|
stepName: 'test-turbopack-production-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-turbopack-production-integration: |
|
|
name: test turbopack production integration |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export IS_TURBOPACK_TEST=1 |
|
|
export TURBOPACK_BUILD=1 |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type integration |
|
|
stepName: 'test-turbopack-production-integration-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-rspack-dev: |
|
|
name: test rspack dev |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && needs.changes.outputs.rspack == 'true' }} |
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/5, 2/5, 3/5, 4/5, 5/5] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/rspack-dev-tests-manifest.json" |
|
|
export NEXT_TEST_MODE=dev |
|
|
|
|
|
|
|
|
export NEXT_RSPACK=1 |
|
|
export NEXT_TEST_USE_RSPACK=1 |
|
|
|
|
|
|
|
|
|
|
|
export TURBOPACK_DEV=1 |
|
|
|
|
|
node run-tests.js \ |
|
|
--test-pattern '^(test\/(development|e2e))/.*\.test\.(js|jsx|ts|tsx)$' \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} |
|
|
stepName: 'test-rspack-dev-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-rspack-integration: |
|
|
name: test rspack development integration |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && needs.changes.outputs.rspack == 'true' }} |
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/rspack-dev-tests-manifest.json" |
|
|
|
|
|
|
|
|
export NEXT_RSPACK=1 |
|
|
export NEXT_TEST_USE_RSPACK=1 |
|
|
|
|
|
|
|
|
|
|
|
export TURBOPACK_DEV=1 |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type integration |
|
|
stepName: 'test-rspack-integration-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-rspack-production: |
|
|
name: test rspack production |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && needs.changes.outputs.rspack == 'true' }} |
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
exclude: |
|
|
|
|
|
- react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-react-18-tests') && '18.3.1' }} |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/rspack-build-tests-manifest.json" |
|
|
export NEXT_TEST_MODE=start |
|
|
|
|
|
|
|
|
export NEXT_RSPACK=1 |
|
|
export NEXT_TEST_USE_RSPACK=1 |
|
|
|
|
|
|
|
|
|
|
|
export TURBOPACK_BUILD=1 |
|
|
|
|
|
node run-tests.js --timings -g ${{ matrix.group }} --type production |
|
|
stepName: 'test-rspack-production-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-rspack-production-integration: |
|
|
name: test rspack production integration |
|
|
needs: ['optimize-ci', 'changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && needs.changes.outputs.rspack == 'true' }} |
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/rspack-build-tests-manifest.json" |
|
|
|
|
|
|
|
|
export NEXT_RSPACK=1 |
|
|
export NEXT_TEST_USE_RSPACK=1 |
|
|
|
|
|
|
|
|
|
|
|
export TURBOPACK_BUILD=1 |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type integration |
|
|
stepName: 'test-rspack-production-integration-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-next-swc-wasm: |
|
|
name: test next-swc wasm |
|
|
needs: ['optimize-ci', 'changes', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
skipNativeBuild: 'yes' |
|
|
skipNativeInstall: 'yes' |
|
|
afterBuild: | |
|
|
rustup target add wasm32-unknown-unknown |
|
|
node ./scripts/normalize-version-bump.js |
|
|
pnpm dlx turbo@${TURBO_VERSION} run build-wasm -- --target nodejs |
|
|
git checkout . |
|
|
|
|
|
export NEXT_TEST_MODE=start |
|
|
export NEXT_TEST_WASM=true |
|
|
node run-tests.js \ |
|
|
test/production/pages-dir/production/test/index.test.ts \ |
|
|
test/e2e/streaming-ssr/index.test.ts |
|
|
stepName: 'test-next-swc-wasm' |
|
|
secrets: inherit |
|
|
|
|
|
|
|
|
test-next-swc-napi-wasi: |
|
|
name: test next-swc wasi |
|
|
needs: ['optimize-ci', 'changes', 'build-next'] |
|
|
|
|
|
|
|
|
|
|
|
if: false |
|
|
|
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
skipNativeBuild: 'yes' |
|
|
skipNativeInstall: 'yes' |
|
|
afterBuild: | |
|
|
rustup target add wasm32-wasip1-threads |
|
|
pnpm dlx turbo@${TURBO_VERSION} run build-native-wasi |
|
|
stepName: 'test-next-swc-napi-wasi' |
|
|
secrets: inherit |
|
|
|
|
|
test-unit: |
|
|
name: test unit |
|
|
needs: ['changes', 'build-next', 'build-native'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
node: [18, 20] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: ${{ matrix.node }} |
|
|
afterBuild: node run-tests.js --type unit |
|
|
stepName: 'test-unit-${{ matrix.node }}' |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
test-unit-windows: |
|
|
name: test unit windows |
|
|
needs: ['changes', 'build-native', 'build-native-windows'] |
|
|
if: ${{ needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
node: [18, 20] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: ${{ matrix.node }} |
|
|
afterBuild: node run-tests.js --type unit |
|
|
stepName: 'test-unit-windows-${{ matrix.node }}' |
|
|
runs_on_labels: '["windows","self-hosted","x64"]' |
|
|
buildNativeTarget: 'x86_64-pc-windows-msvc' |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
test-new-tests-dev: |
|
|
name: Test new tests for flakes (dev) |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/5, 2/5, 3/5, 4/5, 5/5] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
node scripts/test-new-tests.mjs \ |
|
|
--flake-detection \ |
|
|
--mode dev \ |
|
|
--group ${{ matrix.group }} |
|
|
stepName: 'test-new-tests-dev-${{matrix.group}}' |
|
|
timeout_minutes: 60 |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
test-new-tests-start: |
|
|
name: Test new tests for flakes (prod) |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/5, 2/5, 3/5, 4/5, 5/5] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
node scripts/test-new-tests.mjs \ |
|
|
--flake-detection \ |
|
|
--mode start \ |
|
|
--group ${{ matrix.group }} |
|
|
stepName: 'test-new-tests-start-${{matrix.group}}' |
|
|
timeout_minutes: 60 |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
test-new-tests-deploy: |
|
|
name: Test new tests when deployed |
|
|
needs: |
|
|
['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/5, 2/5, 3/5, 4/5, 5/5] |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_E2E_TEST_TIMEOUT=240000 |
|
|
export GH_PR_NUMBER=${{ github.event.pull_request && github.event.pull_request.number || '' }} |
|
|
node scripts/test-new-tests.mjs \ |
|
|
--mode deploy \ |
|
|
--group ${{ matrix.group }} |
|
|
stepName: 'test-new-tests-deploy-${{matrix.group}}' |
|
|
|
|
|
secrets: inherit |
|
|
|
|
|
test-dev: |
|
|
name: test dev |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
exclude: |
|
|
|
|
|
- react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-react-18-tests') && '18.3.1' }} |
|
|
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] |
|
|
|
|
|
react: ['', '18.3.1'] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_TEST_MODE=dev |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type development |
|
|
stepName: 'test-dev-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-dev-windows: |
|
|
name: test dev windows |
|
|
needs: |
|
|
[ |
|
|
'optimize-ci', |
|
|
'changes', |
|
|
'build-native-windows', |
|
|
'build-native', |
|
|
'build-next', |
|
|
] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_TEST_MODE=dev |
|
|
|
|
|
node run-tests.js \ |
|
|
test/e2e/app-dir/app/index.test.ts \ |
|
|
test/e2e/app-dir/app-edge/app-edge.test.ts |
|
|
stepName: 'test-dev-windows' |
|
|
runs_on_labels: '["windows","self-hosted","x64"]' |
|
|
buildNativeTarget: 'x86_64-pc-windows-msvc' |
|
|
secrets: inherit |
|
|
|
|
|
test-integration-windows: |
|
|
name: test integration windows |
|
|
needs: |
|
|
[ |
|
|
'optimize-ci', |
|
|
'changes', |
|
|
'build-native-windows', |
|
|
'build-native', |
|
|
'build-next', |
|
|
] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
node run-tests.js \ |
|
|
--concurrency 4 \ |
|
|
test/production/pages-dir/production/test/index.test.ts \ |
|
|
test/integration/css-client-nav/test/index.test.js \ |
|
|
test/integration/rewrites-has-condition/test/index.test.js \ |
|
|
test/integration/create-next-app/index.test.ts \ |
|
|
test/integration/create-next-app/package-manager/pnpm.test.ts |
|
|
stepName: 'test-integration-windows' |
|
|
runs_on_labels: '["windows","self-hosted","x64"]' |
|
|
buildNativeTarget: 'x86_64-pc-windows-msvc' |
|
|
secrets: inherit |
|
|
|
|
|
test-prod-windows: |
|
|
name: test prod windows |
|
|
needs: |
|
|
[ |
|
|
'optimize-ci', |
|
|
'changes', |
|
|
'build-native-windows', |
|
|
'build-native', |
|
|
'build-next', |
|
|
] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_TEST_MODE=start |
|
|
|
|
|
node run-tests.js --type production \ |
|
|
test/e2e/app-dir/app/index.test.ts \ |
|
|
test/e2e/app-dir/app-edge/app-edge.test.ts \ |
|
|
test/e2e/app-dir/metadata-edge/index.test.ts \ |
|
|
test/e2e/app-dir/non-root-project-monorepo/non-root-project-monorepo.test.ts |
|
|
stepName: 'test-prod-windows' |
|
|
runs_on_labels: '["windows","self-hosted","x64"]' |
|
|
buildNativeTarget: 'x86_64-pc-windows-msvc' |
|
|
secrets: inherit |
|
|
|
|
|
test-prod: |
|
|
name: test prod |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
exclude: |
|
|
|
|
|
- react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-react-18-tests') && '18.3.1' }} |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
|
|
|
react: ['', '18.3.1'] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export NEXT_TEST_MODE=start |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
|
|
|
node run-tests.js --timings -g ${{ matrix.group }} --type production |
|
|
stepName: 'test-prod-react-${{ matrix.react }}-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-integration: |
|
|
name: test integration |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: |
|
|
- 1/13 |
|
|
- 2/13 |
|
|
- 3/13 |
|
|
- 4/13 |
|
|
- 5/13 |
|
|
- 6/13 |
|
|
- 7/13 |
|
|
- 8/13 |
|
|
- 9/13 |
|
|
- 10/13 |
|
|
- 11/13 |
|
|
- 12/13 |
|
|
- 13/13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
react: [''] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export NEXT_TEST_REACT_VERSION="${{ matrix.react }}" |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type integration |
|
|
stepName: 'test-integration-${{ matrix.group }}-react-${{ matrix.react }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-firefox-safari: |
|
|
name: test firefox and safari |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
pnpm playwright install |
|
|
|
|
|
|
|
|
export TEST_CONCURRENCY=1 |
|
|
|
|
|
BROWSER_NAME=firefox node run-tests.js \ |
|
|
test/production/pages-dir/production/test/index.test.ts |
|
|
|
|
|
NEXT_TEST_MODE=start BROWSER_NAME=safari node run-tests.js \ |
|
|
test/production/pages-dir/production/test/index.test.ts \ |
|
|
test/e2e/basepath/basepath.test.ts \ |
|
|
test/e2e/basepath/error-pages.test.ts |
|
|
|
|
|
BROWSER_NAME=safari DEVICE_NAME='iPhone XR' node run-tests.js \ |
|
|
test/production/prerender-prefetch/index.test.ts |
|
|
stepName: 'test-firefox-safari' |
|
|
secrets: inherit |
|
|
|
|
|
|
|
|
|
|
|
test-ppr-integration: |
|
|
name: test ppr integration |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
afterBuild: | |
|
|
export __NEXT_EXPERIMENTAL_PPR=true |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="test/ppr-tests-manifest.json" |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
--type integration |
|
|
stepName: 'test-ppr-integration' |
|
|
secrets: inherit |
|
|
|
|
|
test-ppr-dev: |
|
|
name: test ppr dev |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export __NEXT_EXPERIMENTAL_PPR=true |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="test/ppr-tests-manifest.json" |
|
|
export NEXT_TEST_MODE=dev |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type development |
|
|
stepName: 'test-ppr-dev-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-ppr-prod: |
|
|
name: test ppr prod |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
afterBuild: | |
|
|
export __NEXT_EXPERIMENTAL_PPR=true |
|
|
export NEXT_EXTERNAL_TESTS_FILTERS="test/ppr-tests-manifest.json" |
|
|
export NEXT_TEST_MODE=start |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type production |
|
|
stepName: 'test-ppr-prod-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
|
|
|
|
|
|
test-cache-components-integration: |
|
|
name: test cache components integration |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
nodeVersion: 18.18.2 |
|
|
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" |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
--type integration |
|
|
stepName: 'test-cache-components-integration' |
|
|
secrets: inherit |
|
|
|
|
|
test-cache-components-dev: |
|
|
name: test cache components dev |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
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_TEST_MODE=dev |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type development |
|
|
stepName: 'test-cache-components-dev-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
test-cache-components-prod: |
|
|
name: test cache components prod |
|
|
needs: ['optimize-ci', 'changes', 'build-native', 'build-next'] |
|
|
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }} |
|
|
|
|
|
strategy: |
|
|
fail-fast: false |
|
|
matrix: |
|
|
group: [1/7, 2/7, 3/7, 4/7, 5/7, 6/7, 7/7] |
|
|
uses: ./.github/workflows/build_reusable.yml |
|
|
with: |
|
|
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_TEST_MODE=start |
|
|
|
|
|
node run-tests.js \ |
|
|
--timings \ |
|
|
-g ${{ matrix.group }} \ |
|
|
--type production |
|
|
stepName: 'test-cache-components-prod-${{ matrix.group }}' |
|
|
secrets: inherit |
|
|
|
|
|
tests-pass: |
|
|
needs: |
|
|
[ |
|
|
'build-native', |
|
|
'build-next', |
|
|
'lint', |
|
|
'validate-docs-links', |
|
|
'check-types-precompiled', |
|
|
'test-unit', |
|
|
'test-dev', |
|
|
'test-prod', |
|
|
'test-integration', |
|
|
'test-firefox-safari', |
|
|
'test-ppr-dev', |
|
|
'test-ppr-prod', |
|
|
'test-ppr-integration', |
|
|
'test-cache-components-dev', |
|
|
'test-cache-components-prod', |
|
|
'test-cache-components-integration', |
|
|
'test-cargo-unit', |
|
|
'rust-check', |
|
|
'rustdoc-check', |
|
|
'test-next-swc-wasm', |
|
|
'test-turbopack-dev', |
|
|
'test-turbopack-integration', |
|
|
'test-new-tests-dev', |
|
|
'test-new-tests-start', |
|
|
'test-new-tests-deploy', |
|
|
'test-turbopack-production', |
|
|
'test-turbopack-production-integration', |
|
|
'test-unit-windows', |
|
|
'test-dev-windows', |
|
|
'test-integration-windows', |
|
|
'test-prod-windows', |
|
|
] |
|
|
|
|
|
if: always() |
|
|
runs-on: ubuntu-latest |
|
|
name: thank you, next |
|
|
steps: |
|
|
- run: exit 1 |
|
|
if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }} |
|
|
|