mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-09 04:02:35 +00:00
208 lines
7.5 KiB
TypeScript
208 lines
7.5 KiB
TypeScript
/** Build one release target with matching Electron, Node.js, and seed architecture. */
|
|
|
|
import { spawn } from 'node:child_process'
|
|
import { mkdirSync, rmSync } from 'node:fs'
|
|
import { parseArgs } from 'node:util'
|
|
import { join, resolve } from 'node:path'
|
|
|
|
const APP_ROOT = resolve(import.meta.dirname, '..')
|
|
const REPOSITORY_ROOT = resolve(APP_ROOT, '..', '..')
|
|
const DSH_PACK_ROOT = join(REPOSITORY_ROOT, 'dist', 'npm')
|
|
const VENDOR_PACK_ROOT = join(REPOSITORY_ROOT, 'dist', 'npm-vendor')
|
|
const LANDLOCK_PACK_ROOT = join(REPOSITORY_ROOT, 'dist', 'npm-landlock')
|
|
const WINDOWS_SIGNING_ENV_PREFIX = 'DSH_DESKTOP_WINDOWS_'
|
|
const WINDOWS_SIGNING_ENV_NAMES = [
|
|
'DSH_DESKTOP_WINDOWS_CER_FILE',
|
|
'DSH_DESKTOP_WINDOWS_KEY_CONTAINER',
|
|
'DSH_DESKTOP_WINDOWS_SIGNTOOL',
|
|
'DSH_DESKTOP_WINDOWS_TOKEN_PIN',
|
|
] as const
|
|
|
|
/** Fixed platform and architecture identifiers exposed by package scripts. */
|
|
export type DesktopPackageTargetName = 'mac-arm64' | 'mac-x64' | 'win-x64'
|
|
|
|
/** One supported release target and its electron-builder selectors. */
|
|
export interface DesktopPackageTarget {
|
|
readonly name: DesktopPackageTargetName
|
|
readonly platform: 'darwin' | 'win32'
|
|
readonly arch: 'arm64' | 'x64'
|
|
readonly builderPlatform: '--mac' | '--win'
|
|
readonly builderArch: '--arm64' | '--x64'
|
|
}
|
|
|
|
const TARGETS: Record<DesktopPackageTargetName, DesktopPackageTarget> = {
|
|
'mac-arm64': {
|
|
name: 'mac-arm64',
|
|
platform: 'darwin',
|
|
arch: 'arm64',
|
|
builderPlatform: '--mac',
|
|
builderArch: '--arm64',
|
|
},
|
|
'mac-x64': {
|
|
name: 'mac-x64',
|
|
platform: 'darwin',
|
|
arch: 'x64',
|
|
builderPlatform: '--mac',
|
|
builderArch: '--x64',
|
|
},
|
|
'win-x64': {
|
|
name: 'win-x64',
|
|
platform: 'win32',
|
|
arch: 'x64',
|
|
builderPlatform: '--win',
|
|
builderArch: '--x64',
|
|
},
|
|
}
|
|
|
|
/**
|
|
* Remove Windows signing configuration from package preparation subprocesses.
|
|
* @param environment - Packaging command environment.
|
|
* @returns A copy without Windows signing fields.
|
|
*/
|
|
export function withoutWindowsSigningEnvironment(environment: NodeJS.ProcessEnv): NodeJS.ProcessEnv {
|
|
return Object.fromEntries(Object.entries(environment)
|
|
.filter(([name]) => !name.startsWith(WINDOWS_SIGNING_ENV_PREFIX)))
|
|
}
|
|
|
|
function isTargetName(value: string): value is DesktopPackageTargetName {
|
|
return Object.hasOwn(TARGETS, value)
|
|
}
|
|
|
|
/**
|
|
* Resolve a named release target and reject hosts that cannot execute its packaged runtime.
|
|
* @param name - One of the fixed Desktop release target names.
|
|
* @param hostPlatform - Build-host Node.js platform.
|
|
* @param hostArch - Build-host Node.js architecture.
|
|
* @returns The target selectors shared by runtime preparation and electron-builder.
|
|
*/
|
|
export function resolveDesktopPackageTarget(
|
|
name: string,
|
|
hostPlatform: NodeJS.Platform = process.platform,
|
|
hostArch: string = process.arch,
|
|
): DesktopPackageTarget {
|
|
if (!isTargetName(name)) {
|
|
throw new Error(`desktop package: unsupported target ${JSON.stringify(name)}; expected ${Object.keys(TARGETS).join(', ')}`)
|
|
}
|
|
const target = TARGETS[name]
|
|
if (target.platform === 'win32' && (hostPlatform !== 'win32' || hostArch !== 'x64')) {
|
|
throw new Error('desktop package: win-x64 requires a Windows x64 build host')
|
|
}
|
|
if (target.platform === 'darwin' && hostPlatform !== 'darwin') {
|
|
throw new Error(`desktop package: ${name} requires a macOS build host`)
|
|
}
|
|
if (name === 'mac-arm64' && hostArch !== 'arm64') {
|
|
throw new Error('desktop package: mac-arm64 requires an Apple Silicon build host')
|
|
}
|
|
if (name === 'mac-x64' && hostArch !== 'arm64' && hostArch !== 'x64') {
|
|
throw new Error('desktop package: mac-x64 requires an Intel Mac or Apple Silicon with Rosetta')
|
|
}
|
|
return target
|
|
}
|
|
|
|
interface DesktopPackageInvocation {
|
|
readonly target: DesktopPackageTarget
|
|
readonly directory: boolean
|
|
readonly prepareOnly: boolean
|
|
}
|
|
|
|
function hostTargetName(platform: NodeJS.Platform, arch: string): DesktopPackageTargetName {
|
|
const name = `${platform === 'darwin' ? 'mac' : platform === 'win32' ? 'win' : platform}-${arch}`
|
|
if (!isTargetName(name)) throw new Error(`desktop package: unsupported build host ${platform}-${arch}`)
|
|
return name
|
|
}
|
|
|
|
/**
|
|
* Parse the fixed-target packaging command line.
|
|
* @param argv - Arguments after the script entry point.
|
|
* @param hostPlatform - Build-host Node.js platform.
|
|
* @param hostArch - Build-host Node.js architecture.
|
|
* @returns The validated target and whether to emit an unpacked directory.
|
|
*/
|
|
export function parseDesktopPackageInvocation(
|
|
argv: readonly string[],
|
|
hostPlatform: NodeJS.Platform = process.platform,
|
|
hostArch: string = process.arch,
|
|
): DesktopPackageInvocation {
|
|
const { values, positionals } = parseArgs({
|
|
args: [...argv],
|
|
allowPositionals: true,
|
|
options: {
|
|
dir: { type: 'boolean', default: false },
|
|
'prepare-only': { type: 'boolean', default: false },
|
|
},
|
|
})
|
|
if (positionals.length > 1) throw new Error('desktop package: expected at most one target')
|
|
const name = positionals[0] ?? hostTargetName(hostPlatform, hostArch)
|
|
return {
|
|
target: resolveDesktopPackageTarget(name, hostPlatform, hostArch),
|
|
directory: values.dir,
|
|
prepareOnly: values['prepare-only'],
|
|
}
|
|
}
|
|
|
|
function runPnpm(
|
|
args: readonly string[],
|
|
env: NodeJS.ProcessEnv = process.env,
|
|
cwd: string = APP_ROOT,
|
|
): Promise<void> {
|
|
const pnpmEntry = process.env.npm_execpath
|
|
if (pnpmEntry === undefined || pnpmEntry === '') {
|
|
throw new Error('desktop package: invoke this script through a pnpm package command')
|
|
}
|
|
return new Promise((resolvePromise, reject) => {
|
|
const child = spawn(process.execPath, [pnpmEntry, ...args], {
|
|
cwd,
|
|
env,
|
|
stdio: 'inherit',
|
|
})
|
|
child.once('error', reject)
|
|
child.once('close', (code, signal) => {
|
|
if (code === 0) resolvePromise()
|
|
else reject(new Error(`desktop package: pnpm ${args.join(' ')} exited with ${String(code ?? signal)}`))
|
|
})
|
|
})
|
|
}
|
|
|
|
async function main(): Promise<void> {
|
|
const invocation = parseDesktopPackageInvocation(process.argv.slice(2))
|
|
const { target } = invocation
|
|
const buildEnv = withoutWindowsSigningEnvironment(process.env)
|
|
const targetEnv: NodeJS.ProcessEnv = {
|
|
...buildEnv,
|
|
DSH_DESKTOP_TARGET_PLATFORM: target.platform,
|
|
DSH_DESKTOP_TARGET_ARCH: target.arch,
|
|
}
|
|
const electronBuilderEnv = { ...targetEnv }
|
|
for (const name of WINDOWS_SIGNING_ENV_NAMES) {
|
|
if (process.env[name] !== undefined) electronBuilderEnv[name] = process.env[name]
|
|
}
|
|
await runPnpm(['run', 'build:official'], buildEnv, REPOSITORY_ROOT)
|
|
await runPnpm(['run', 'release:pack', '--family', 'dsh', '--out', DSH_PACK_ROOT], buildEnv, REPOSITORY_ROOT)
|
|
await runPnpm(['run', 'release:pack', '--family', 'vendor', '--out', VENDOR_PACK_ROOT], buildEnv, REPOSITORY_ROOT)
|
|
rmSync(LANDLOCK_PACK_ROOT, { recursive: true, force: true })
|
|
mkdirSync(LANDLOCK_PACK_ROOT, { recursive: true })
|
|
await runPnpm(['--dir', 'native/landlock-run', 'run', 'build:ts'], buildEnv, REPOSITORY_ROOT)
|
|
await runPnpm([
|
|
'--dir',
|
|
'native/landlock-run/packages/entry',
|
|
'pack',
|
|
'--pack-destination',
|
|
LANDLOCK_PACK_ROOT,
|
|
], buildEnv, REPOSITORY_ROOT)
|
|
await runPnpm(['run', 'prepare:runtime'], targetEnv)
|
|
await runPnpm(['run', 'prepare:packages'], targetEnv)
|
|
await runPnpm(['run', 'prepare:seed'], targetEnv)
|
|
if (invocation.prepareOnly) return
|
|
await runPnpm([
|
|
'exec',
|
|
'electron-builder',
|
|
'--config',
|
|
'electron-builder.config.mjs',
|
|
target.builderPlatform,
|
|
target.builderArch,
|
|
...(invocation.directory ? ['--dir'] : []),
|
|
], electronBuilderEnv)
|
|
}
|
|
|
|
if (process.argv[1] !== undefined && import.meta.filename === resolve(process.argv[1])) await main()
|