| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #!/usr/bin/env bun
- import path from "path"
- const dir = new URL("..", import.meta.url).pathname
- process.chdir(dir)
- import { $ } from "bun"
- import pkg from "../package.json"
- import { Script } from "@opencode-ai/script"
- 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 binaries: Record<string, string> = {}
- 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=${Script.version}" -o ../opencode/dist/${name}/bin/tui ../tui/cmd/opencode/main.go`
- .cwd("../tui")
- .quiet()
- const watcher = `@parcel/watcher-${os === "windows" ? "win32" : os}-${arch.replace("-baseline", "")}${os === "linux" ? "-glibc" : ""}`
- await $`mkdir -p ../../node_modules/${watcher}`
- await $`npm pack npm pack ${watcher}`.cwd(path.join(dir, "../../node_modules")).quiet()
- await $`tar -xf ../../node_modules/${watcher.replace("@parcel/", "parcel-")}-*.tgz -C ../../node_modules/${watcher} --strip-components=1`
- await Bun.build({
- sourcemap: "external",
- compile: {
- target: `bun-${os}-${arch}` as any,
- outfile: `dist/${name}/bin/opencode`,
- execArgv: [`--user-agent=opencode/${Script.version}`, `--env-file=""`, `--`],
- windows: {},
- },
- entrypoints: ["./src/index.ts"],
- define: {
- OPENCODE_VERSION: `'${Script.version}'`,
- OPENCODE_CHANNEL: `'${Script.channel}'`,
- OPENCODE_TUI_PATH: `'../../../dist/${name}/bin/tui'`,
- },
- })
- await $`rm -rf ./dist/${name}/bin/tui`
- await Bun.file(`dist/${name}/package.json`).write(
- JSON.stringify(
- {
- name,
- version: Script.version,
- os: [os === "windows" ? "win32" : os],
- cpu: [arch],
- },
- null,
- 2,
- ),
- )
- binaries[name] = Script.version
- }
- export { binaries }
|