|
|
@@ -8,73 +8,15 @@ import pkg from "../package.json"
|
|
|
const dry = process.env["OPENCODE_DRY"] === "true"
|
|
|
const version = process.env["OPENCODE_VERSION"]!
|
|
|
const snapshot = process.env["OPENCODE_SNAPSHOT"] === "true"
|
|
|
+const npmTag = snapshot ? "snapshot" : "latest"
|
|
|
|
|
|
console.log(`publishing ${version}`)
|
|
|
|
|
|
-const GOARCH: Record<string, string> = {
|
|
|
- arm64: "arm64",
|
|
|
- x64: "amd64",
|
|
|
- "x64-baseline": "amd64",
|
|
|
-}
|
|
|
-
|
|
|
-const targets = [
|
|
|
- ["windows", "x64"],
|
|
|
- ["linux", "arm64"],
|
|
|
- ["linux", "x64"],
|
|
|
- ["linux", "x64-baseline"],
|
|
|
- ["darwin", "x64"],
|
|
|
- ["darwin", "x64-baseline"],
|
|
|
- ["darwin", "arm64"],
|
|
|
-]
|
|
|
-
|
|
|
-await $`rm -rf dist`
|
|
|
-
|
|
|
-const optionalDependencies: Record<string, string> = {}
|
|
|
-const npmTag = snapshot ? "snapshot" : "latest"
|
|
|
-for (const [os, arch] of targets) {
|
|
|
- console.log(`building ${os}-${arch}`)
|
|
|
- const name = `${pkg.name}-${os}-${arch}`
|
|
|
- await $`mkdir -p dist/${name}/bin`
|
|
|
- await $`CGO_ENABLED=0 GOOS=${os} GOARCH=${GOARCH[arch]} go build -ldflags="-s -w -X main.Version=${version}" -o ../opencode/dist/${name}/bin/tui ../tui/cmd/opencode/main.go`.cwd(
|
|
|
- "../tui",
|
|
|
- )
|
|
|
- await Bun.build({
|
|
|
- compile: {
|
|
|
- target: `bun-${os}-${arch}` as any,
|
|
|
- outfile: `dist/${name}/bin/opencode`,
|
|
|
- execArgv: [`--user-agent=opencode/${version}`, `--env-file=""`, `--`],
|
|
|
- windows: {},
|
|
|
- },
|
|
|
- entrypoints: ["./src/index.ts"],
|
|
|
- define: {
|
|
|
- OPENCODE_VERSION: `'${version}'`,
|
|
|
- OPENCODE_TUI_PATH: `'../../../dist/${name}/bin/tui'`,
|
|
|
- },
|
|
|
- })
|
|
|
- // await $`bun build --define OPENCODE_TUI_PATH="'../../../dist/${name}/bin/tui'" --define OPENCODE_VERSION="'${version}'" --compile --target=bun-${os}-${arch} --outfile=dist/${name}/bin/opencode ./src/index.ts`
|
|
|
- // Run the binary only if it matches current OS/arch
|
|
|
- if (
|
|
|
- process.platform === (os === "windows" ? "win32" : os) &&
|
|
|
- (process.arch === arch || (process.arch === "x64" && arch === "x64-baseline"))
|
|
|
- ) {
|
|
|
- console.log(`smoke test: running dist/${name}/bin/opencode --version`)
|
|
|
- await $`./dist/${name}/bin/opencode --version`
|
|
|
- }
|
|
|
- await $`rm -rf ./dist/${name}/bin/tui`
|
|
|
- await Bun.file(`dist/${name}/package.json`).write(
|
|
|
- JSON.stringify(
|
|
|
- {
|
|
|
- name,
|
|
|
- version,
|
|
|
- os: [os === "windows" ? "win32" : os],
|
|
|
- cpu: [arch],
|
|
|
- },
|
|
|
- null,
|
|
|
- 2,
|
|
|
- ),
|
|
|
- )
|
|
|
- if (!dry) await $`cd dist/${name} && chmod 777 -R . && bun publish --access public --tag ${npmTag}`
|
|
|
- optionalDependencies[name] = version
|
|
|
+const { binaries } = await import("./build.ts")
|
|
|
+{
|
|
|
+ const name = `${pkg.name}-${process.platform}-${process.arch}`
|
|
|
+ console.log(`smoke test: running dist/${name}/bin/opencode --version`)
|
|
|
+ await $`./dist/${name}/bin/opencode --version`
|
|
|
}
|
|
|
|
|
|
await $`mkdir -p ./dist/${pkg.name}`
|
|
|
@@ -93,16 +35,21 @@ await Bun.file(`./dist/${pkg.name}/package.json`).write(
|
|
|
postinstall: "node ./postinstall.mjs",
|
|
|
},
|
|
|
version,
|
|
|
- optionalDependencies,
|
|
|
+ optionalDependencies: binaries,
|
|
|
},
|
|
|
null,
|
|
|
2,
|
|
|
),
|
|
|
)
|
|
|
-if (!dry) await $`cd ./dist/${pkg.name} && bun publish --access public --tag ${npmTag}`
|
|
|
+if (!dry) {
|
|
|
+ for (const [name] of Object.entries(binaries)) {
|
|
|
+ await $`cd dist/${name} && chmod 777 -R . && bun publish --access public --tag ${npmTag}`
|
|
|
+ }
|
|
|
+ await $`cd ./dist/${pkg.name} && bun publish --access public --tag ${npmTag}`
|
|
|
+}
|
|
|
|
|
|
if (!snapshot) {
|
|
|
- for (const key of Object.keys(optionalDependencies)) {
|
|
|
+ for (const key of Object.keys(binaries)) {
|
|
|
await $`cd dist/${key}/bin && zip -r ../../${key}.zip *`
|
|
|
}
|
|
|
|