| name: Build Reusable |
|
|
| on: |
| workflow_call: |
| inputs: |
| afterBuild: |
| required: false |
| description: 'additional steps to run' |
| type: string |
| |
| |
| mold: |
| required: false |
| description: 'whether to use the mold linker' |
| type: string |
| skipInstallBuild: |
| required: false |
| description: 'whether to skip pnpm install && pnpm build' |
| type: string |
| skipNativeBuild: |
| required: false |
| description: 'whether to skip building native modules' |
| type: string |
| skipNativeInstall: |
| required: false |
| description: 'whether to skip native postinstall script' |
| type: string |
| default: 'yes' |
| uploadAnalyzerArtifacts: |
| required: false |
| description: 'whether to upload analyzer artifacts' |
| type: string |
| nodeVersion: |
| required: false |
| description: 'version of Node.js to use' |
| type: string |
| needsRust: |
| required: false |
| description: 'if rust is needed' |
| type: string |
| needsNextest: |
| required: false |
| description: 'if nextest rust dep is needed' |
| type: string |
| rustBuildProfile: |
| required: false |
| description: 'The profile to use for the build, default is `release-with-assertions`, also supports `` for debug and `release` for normal release' |
| type: string |
| default: 'release-with-assertions' |
| uploadSwcArtifact: |
| required: false |
| description: 'if swc artifact needs uploading' |
| type: string |
| rustCacheKey: |
| required: false |
| description: 'rustCacheKey to cache shared target assets' |
| type: string |
| stepName: |
| required: true |
| description: 'name of the step, to be used for the upload artifact unique key ' |
| type: string |
| timeout_minutes: |
| description: 'Timeout in minutes' |
| required: false |
| type: number |
| default: 30 |
| runs_on_labels: |
| description: 'List of runner labels' |
| required: false |
| type: string |
| default: '["self-hosted", "linux", "x64", "metal"]' |
| buildNativeTarget: |
| description: 'Target for build-native step' |
| required: false |
| type: string |
| default: 'x86_64-unknown-linux-gnu' |
|
|
| env: |
| NAPI_CLI_VERSION: 2.18.4 |
| TURBO_VERSION: 2.3.3 |
| NODE_LTS_VERSION: 20.9.0 |
| |
| |
| TEST_CONCURRENCY: 8 |
| |
| RUST_BACKTRACE: 0 |
|
|
| TURBO_TEAM: 'vercel' |
| TURBO_CACHE: 'remote:rw' |
| TURBO_API: ${{ secrets.HOSTED_TURBO_API }} |
| TURBO_TOKEN: ${{ secrets.HOSTED_TURBO_TOKEN }} |
| NEXT_TELEMETRY_DISABLED: 1 |
| |
| NEXT_SKIP_NATIVE_POSTINSTALL: ${{ inputs.skipNativeInstall == 'yes' && '1' || '' }} |
| DATADOG_API_KEY: ${{ secrets.DATA_DOG_API_KEY }} |
| NEXT_JUNIT_TEST_REPORT: 'true' |
| DD_ENV: 'ci' |
| TEST_TIMINGS_TOKEN: ${{ secrets.TEST_TIMINGS_TOKEN }} |
| NEXT_TEST_JOB: 1 |
| VERCEL_TEST_TOKEN: ${{ secrets.VERCEL_TEST_TOKEN }} |
| VERCEL_TEST_TEAM: vtest314-next-e2e-tests |
| NEXT_TEST_PREFER_OFFLINE: 1 |
| NEXT_CI_RUNNER: ${{ inputs.runs_on_labels }} |
|
|
| jobs: |
| build: |
| timeout-minutes: ${{ inputs.timeout_minutes }} |
| runs-on: ${{ fromJson(inputs.runs_on_labels) }} |
|
|
| defaults: |
| run: |
| shell: bash -leo pipefail {0} |
|
|
| outputs: |
| input_step_key: ${{ steps.var.outputs.input_step_key }} |
|
|
| steps: |
| - name: Check if fnm is installed |
| id: check-fnm |
| run: | |
| if [ -x "$(command -v fnm)" ]; then |
| echo "fnm found." |
| echo "found=true" >> $GITHUB_OUTPUT |
| else |
| echo "fnm not found." |
| echo "found=false" >> $GITHUB_OUTPUT |
| fi |
| |
| - name: Install fnm |
| if: steps.check-fnm.outputs.found != 'true' |
| run: | |
| curl -fsSL https://fnm.vercel.app/install | bash |
| export PATH="/home/runner/.local/share/fnm:$PATH" |
| echo "/home/runner/.local/share/fnm" >> $GITHUB_PATH |
| fnm env --json | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' | xargs -I {} echo "{}" >> $GITHUB_ENV |
| |
| - name: Normalize input step names into path key |
| uses: actions/github-script@v7 |
| id: var |
| with: |
| script: | |
| core.setOutput('input_step_key', '${{ inputs.stepName }}'.toLowerCase().replaceAll(/[/.]/g, '-').trim('-')); |
| |
| - run: fnm use --install-if-missing ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }} |
| - run: fnm default ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }} |
| - run: node -v |
| - name: Prepare corepack |
| if: ${{ contains(fromJson(inputs.runs_on_labels), 'ubuntu-latest') }} |
| run: | |
| npm i -g corepack@0.31 |
| - run: corepack enable |
| - run: pwd |
|
|
| - run: rm -rf .git |
|
|
| - uses: actions/checkout@v4 |
| with: |
| fetch-depth: 25 |
|
|
| |
| - name: Install Rust |
| uses: ./.github/actions/setup-rust |
| if: ${{ inputs.skipNativeBuild != 'yes' || inputs.needsNextest == 'yes' || inputs.needsRust == 'yes' }} |
|
|
| - name: 'Install mold linker' |
| if: ${{ inputs.mold == 'yes' }} |
| run: | |
| sudo apt update |
| sudo apt install -y mold |
| echo RUSTFLAGS=${RUSTFLAGS}\ -C\ link-arg=-fuse-ld=mold >> $GITHUB_ENV |
| |
| - name: Install nextest |
| if: ${{ inputs.needsNextest == 'yes' }} |
| uses: taiki-e/install-action@nextest |
|
|
| - run: rustc --version |
| if: ${{ inputs.skipNativeBuild != 'yes' || inputs.needsNextest == 'yes' || inputs.needsRust == 'yes' }} |
|
|
| - run: corepack prepare --activate yarn@1.22.19 && npm i -g "@napi-rs/cli@${NAPI_CLI_VERSION}" |
|
|
| - name: Cache on ${{ github.ref_name }} |
| uses: ijjk/rust-cache@turbo-cache-v1.0.9 |
| if: ${{ inputs.rustCacheKey }} |
| with: |
| cache-provider: 'turbo' |
| save-if: ${{ github.ref_name == 'canary' }} |
| shared-key: ${{ inputs.rustCacheKey }}-${{ inputs.buildNativeTarget }}-build-${{ inputs.rustBuildProfile }}-${{ hashFiles('.cargo/config.toml') }} |
|
|
| |
| - run: git clean -xdf && rm -rf /tmp/next-repo-*; rm -rf /tmp/next-install-* /tmp/yarn-* /tmp/ncc-cache target |
|
|
| |
| - name: Set CI git user |
| run: | |
| git config --global user.name "vercel-ci-bot" |
| git config --global user.email "infra+ci@vercel.com" |
| |
| - run: cargo clean |
| if: ${{ inputs.skipNativeBuild != 'yes' || inputs.needsNextest == 'yes' || inputs.needsRust == 'yes' }} |
|
|
| |
| - run: node scripts/normalize-version-bump.js |
| name: normalize versions |
|
|
| - run: pnpm dlx turbo@${TURBO_VERSION} run build-native-${{ inputs.rustBuildProfile }} -v --env-mode loose --remote-cache-timeout 90 --summarize -- --target ${{ inputs.buildNativeTarget }} |
| if: ${{ inputs.skipNativeBuild != 'yes' }} |
|
|
| - name: Upload next-swc artifact |
| if: ${{ inputs.uploadSwcArtifact == 'yes' }} |
| uses: actions/upload-artifact@v4 |
| with: |
| name: next-swc-binary |
| path: packages/next-swc/native/next-swc.linux-x64-gnu.node |
|
|
| |
| - run: git checkout . |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| - run: pnpm install |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| - name: Install node-file-trace test dependencies |
| if: ${{ inputs.needsNextest == 'yes' }} |
| working-directory: turbopack/crates/turbopack/tests/node-file-trace |
| run: pnpm install -r --side-effects-cache false |
|
|
| - run: ANALYZE=1 pnpm build |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| |
| |
| |
| |
| |
| |
| - name: Re-run pnpm install to link built packages into node_modules/.bin |
| run: pnpm install |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| - run: pnpm playwright install-deps |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| - run: pnpm playwright install chromium |
| if: ${{ inputs.skipInstallBuild != 'yes' }} |
|
|
| - run: pnpm dlx turbo@${TURBO_VERSION} run get-test-timings -- --build ${{ github.sha }} |
|
|
| - run: ${{ inputs.afterBuild }} |
| |
| |
| |
| |
| |
| shell: bash -le {0} |
| timeout-minutes: ${{ inputs.timeout_minutes }} |
|
|
| - name: Upload artifact |
| uses: actions/upload-artifact@v4 |
| with: |
| name: turbo-run-summary-${{ steps.var.outputs.input_step_key }} |
| path: .turbo/runs |
| if-no-files-found: ignore |
|
|
| - name: Upload bundle analyzer artifacts |
| uses: actions/upload-artifact@v4 |
| if: ${{ inputs.uploadAnalyzerArtifacts == 'yes' }} |
| with: |
| name: webpack bundle analysis stats-${{ steps.var.outputs.input_step_key }} |
| path: packages/next/dist/compiled/next-server/report.*.html |
|
|
| - name: Upload test report to datadog |
| if: ${{ inputs.afterBuild && always() && !github.event.pull_request.head.repo.fork }} |
| run: | |
| # Add a `test.type` tag to distinguish between turbopack and next.js runs |
| # Add a `nextjs.test_session.name` tag to help identify the job |
| if [ -d ./test/test-junit-report ]; then |
| pnpm dlx @datadog/datadog-ci@2.45.1 junit upload \ |
| --service nextjs \ |
| --tags test.type:nextjs \ |
| --tags test_session.name:"${{ inputs.stepName }}" \ |
| ./test/test-junit-report |
| fi |
| if [ -d ./test/turbopack-test-junit-report ]; then |
| pnpm dlx @datadog/datadog-ci@2.45.1 junit upload \ |
| --service nextjs \ |
| --tags test.type:turbopack \ |
| --tags test_session.name:"${{ inputs.stepName }}" \ |
| ./test/turbopack-test-junit-report |
| fi |
| |
| - name: Upload Playwright Snapshots |
| uses: actions/upload-artifact@v4 |
| if: ${{ inputs.afterBuild && always() }} |
| with: |
| name: test-playwright-snapshots-${{ steps.var.outputs.input_step_key }} |
| path: | |
| test/traces |
| if-no-files-found: ignore |
|
|