Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
111 lines
2.6 KiB
JavaScript
111 lines
2.6 KiB
JavaScript
import { execSync } from 'child_process'
|
|
import { readdirSync, rmSync } from 'fs'
|
|
import { dirname, join } from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
const PKG_DIR = __dirname
|
|
const ROOT_DIR = join(__dirname, '../..')
|
|
const NATIVE_DIR = join(PKG_DIR, 'native')
|
|
|
|
function hasExistingNativeBinary() {
|
|
try {
|
|
const files = readdirSync(NATIVE_DIR)
|
|
return files.some((f) => f.endsWith('.node'))
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|
|
|
|
function clearNativeBinaries() {
|
|
try {
|
|
const files = readdirSync(NATIVE_DIR)
|
|
for (const f of files) {
|
|
if (f.endsWith('.node')) {
|
|
rmSync(join(NATIVE_DIR, f))
|
|
}
|
|
}
|
|
} catch {
|
|
// directory doesn't exist, nothing to clear
|
|
}
|
|
}
|
|
|
|
function getVersionBumpCommit() {
|
|
try {
|
|
return (
|
|
execSync(
|
|
`git log -1 --format=%H -G '"version":' -- packages/next/package.json`,
|
|
{ cwd: ROOT_DIR, encoding: 'utf8' }
|
|
).trim() || null
|
|
)
|
|
} catch {
|
|
return null
|
|
}
|
|
}
|
|
|
|
function hasRustChanges(sinceCommit) {
|
|
try {
|
|
// Omit HEAD to compare against the working tree, which includes
|
|
// committed, staged, and unstaged changes.
|
|
const diff = execSync(
|
|
`git diff --name-only ${sinceCommit} -- ':(glob)**/*.rs' ':(glob)**/*.toml' ':(glob).cargo/**' Cargo.lock rust-toolchain`,
|
|
{ cwd: ROOT_DIR, encoding: 'utf8' }
|
|
).trim()
|
|
return diff.length > 0
|
|
} catch {
|
|
// If we can't determine whether changes occurred, assume they did
|
|
return true
|
|
}
|
|
}
|
|
|
|
function buildNative() {
|
|
console.log('Running swc-build-native...')
|
|
execSync('pnpm run swc-build-native', {
|
|
cwd: ROOT_DIR,
|
|
stdio: 'inherit',
|
|
env: {
|
|
...process.env,
|
|
CARGO_TERM_COLOR: 'always',
|
|
TTY: '1',
|
|
},
|
|
})
|
|
}
|
|
|
|
function main() {
|
|
if (process.env.CI) {
|
|
console.log('Skipping swc-build-native in CI')
|
|
return
|
|
}
|
|
|
|
const versionBumpCommit = getVersionBumpCommit()
|
|
|
|
if (!versionBumpCommit) {
|
|
console.log(
|
|
'Could not determine version bump commit (shallow clone?), building native to be safe...'
|
|
)
|
|
buildNative()
|
|
return
|
|
}
|
|
|
|
if (hasRustChanges(versionBumpCommit)) {
|
|
console.log(
|
|
'Rust source files changed since last version bump, building native...'
|
|
)
|
|
buildNative()
|
|
return
|
|
}
|
|
|
|
// No Rust changes from the release version — clear any stale native build
|
|
// so the prebuilt @next/swc-* npm packages are used instead.
|
|
if (hasExistingNativeBinary()) {
|
|
console.log(
|
|
'No Rust changes since last version bump, clearing stale native binary...'
|
|
)
|
|
clearNativeBinaries()
|
|
}
|
|
|
|
console.log('Skipping swc-build-native (no Rust changes since version bump)')
|
|
}
|
|
|
|
main()
|