mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* refactor(repo): move OpenWork apps into apps and ee layout Rebase the monorepo layout migration onto the latest dev changes so the moved app, desktop, share, and cloud surfaces keep working from their new paths. Carry the latest deeplink, token persistence, build, Vercel, and docs updates forward to avoid stale references and broken deploy tooling. * chore(repo): drop generated desktop artifacts Ignore the moved Tauri target and sidecar paths so local cargo checks do not pollute the branch. Remove the accidentally committed outputs from the repo while keeping the layout migration intact. * fix(release): drop built server cli artifact Stop tracking the locally built apps/server/cli binary so generated server outputs do not leak into commits. Also update the release workflow to check the published scoped package name for @openwork/server before deciding whether npm publish is needed. * fix(workspace): add stable CLI bin wrappers Point the server and router package bins at committed wrapper scripts so workspace installs can create shims before dist outputs exist. Keep the wrappers compatible with built binaries and source checkouts to avoid Vercel install warnings without changing runtime behavior.
578 lines
16 KiB
Rust
578 lines
16 KiB
Rust
use std::env;
|
|
use std::fs;
|
|
use std::path::PathBuf;
|
|
use std::process::Command;
|
|
|
|
#[cfg(unix)]
|
|
use std::os::unix::fs::PermissionsExt;
|
|
|
|
fn main() {
|
|
emit_build_info();
|
|
ensure_opencode_sidecar();
|
|
ensure_openwork_server_sidecar();
|
|
ensure_opencode_router_sidecar();
|
|
ensure_orchestrator_sidecar();
|
|
ensure_chrome_devtools_mcp_sidecar();
|
|
ensure_versions_manifest();
|
|
tauri_build::build();
|
|
}
|
|
|
|
fn ensure_chrome_devtools_mcp_sidecar() {
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
|
|
let canonical_name = if target.contains("windows") {
|
|
"chrome-devtools-mcp.exe"
|
|
} else {
|
|
"chrome-devtools-mcp"
|
|
};
|
|
|
|
let mut target_name = format!("chrome-devtools-mcp-{target}");
|
|
if target.contains("windows") {
|
|
target_name.push_str(".exe");
|
|
}
|
|
|
|
let dest_path = sidecar_dir.join(canonical_name);
|
|
let target_dest_path = sidecar_dir.join(target_name);
|
|
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
}
|
|
|
|
fn ensure_versions_manifest() {
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
if profile == "release" {
|
|
return;
|
|
}
|
|
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
let canonical_path = sidecar_dir.join("versions.json");
|
|
let target_path = sidecar_dir.join(format!("versions.json-{target}"));
|
|
|
|
if canonical_path.exists() && target_path.exists() {
|
|
return;
|
|
}
|
|
|
|
if fs::create_dir_all(&sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
if !canonical_path.exists() {
|
|
let _ = fs::write(&canonical_path, "{}\n");
|
|
}
|
|
if !target_path.exists() {
|
|
let _ = fs::write(&target_path, "{}\n");
|
|
}
|
|
}
|
|
|
|
fn emit_build_info() {
|
|
let sha = env::var("OPENWORK_GIT_SHA")
|
|
.ok()
|
|
.and_then(|value| {
|
|
let trimmed = value.trim().to_string();
|
|
if trimmed.is_empty() {
|
|
None
|
|
} else {
|
|
Some(trimmed)
|
|
}
|
|
})
|
|
.or_else(|| {
|
|
let output = Command::new("git")
|
|
.args(["rev-parse", "HEAD"])
|
|
.output()
|
|
.ok()?;
|
|
if !output.status.success() {
|
|
return None;
|
|
}
|
|
let value = String::from_utf8_lossy(&output.stdout).trim().to_string();
|
|
if value.is_empty() {
|
|
None
|
|
} else {
|
|
Some(value)
|
|
}
|
|
});
|
|
if let Some(value) = sha {
|
|
println!("cargo:rustc-env=OPENWORK_GIT_SHA={}", value);
|
|
}
|
|
|
|
let build_epoch = env::var("SOURCE_DATE_EPOCH")
|
|
.ok()
|
|
.and_then(|value| {
|
|
let trimmed = value.trim().to_string();
|
|
if trimmed.is_empty() {
|
|
None
|
|
} else {
|
|
Some(trimmed)
|
|
}
|
|
})
|
|
.or_else(|| {
|
|
// Best-effort fallback; not reproducible, but useful in dev builds.
|
|
let now = std::time::SystemTime::now()
|
|
.duration_since(std::time::UNIX_EPOCH)
|
|
.ok()?
|
|
.as_secs();
|
|
Some(now.to_string())
|
|
});
|
|
|
|
if let Some(value) = build_epoch {
|
|
println!("cargo:rustc-env=OPENWORK_BUILD_EPOCH={}", value);
|
|
}
|
|
}
|
|
|
|
fn ensure_orchestrator_sidecar() {
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
|
|
let canonical_name = if target.contains("windows") {
|
|
"openwork-orchestrator.exe"
|
|
} else {
|
|
"openwork-orchestrator"
|
|
};
|
|
let mut target_name = format!("openwork-orchestrator-{target}");
|
|
if target.contains("windows") {
|
|
target_name.push_str(".exe");
|
|
}
|
|
|
|
let dest_path = sidecar_dir.join(canonical_name);
|
|
let target_dest_path = sidecar_dir.join(target_name);
|
|
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
|
|
if dest_path.exists() && target_dest_path.exists() {
|
|
return;
|
|
}
|
|
|
|
if target_dest_path.exists() && !dest_path.exists() {
|
|
if copy_sidecar(&target_dest_path, &dest_path, &target) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let source_path = env::var("OPENWORK_ORCHESTRATOR_BIN_PATH")
|
|
.ok()
|
|
.map(PathBuf::from)
|
|
.filter(|path| path.is_file())
|
|
.or_else(|| {
|
|
find_in_path(if target.contains("windows") {
|
|
"openwork.exe"
|
|
} else {
|
|
"openwork"
|
|
})
|
|
});
|
|
|
|
let Some(source_path) = source_path else {
|
|
println!(
|
|
"cargo:warning=orchestrator sidecar missing at {} (set OPENWORK_ORCHESTRATOR_BIN_PATH or install openwork-orchestrator)",
|
|
dest_path.display()
|
|
);
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
return;
|
|
};
|
|
|
|
if fs::create_dir_all(&sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
let copied = copy_sidecar(&source_path, &dest_path, &target);
|
|
if copied {
|
|
#[cfg(unix)]
|
|
{
|
|
let _ = fs::set_permissions(&dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
let _ = copy_sidecar(&dest_path, &target_dest_path, &target);
|
|
} else {
|
|
println!(
|
|
"cargo:warning=Failed to copy orchestrator sidecar from {} to {}",
|
|
source_path.display(),
|
|
dest_path.display()
|
|
);
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
}
|
|
|
|
fn ensure_opencode_sidecar() {
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
|
|
let canonical_name = if target.contains("windows") {
|
|
"opencode.exe"
|
|
} else {
|
|
"opencode"
|
|
};
|
|
|
|
let mut target_name = format!("opencode-{target}");
|
|
if target.contains("windows") {
|
|
target_name.push_str(".exe");
|
|
}
|
|
|
|
let dest_path = sidecar_dir.join(canonical_name);
|
|
let target_dest_path = sidecar_dir.join(target_name);
|
|
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
|
|
if dest_path.exists() && target_dest_path.exists() {
|
|
return;
|
|
}
|
|
|
|
if target_dest_path.exists() && !dest_path.exists() {
|
|
if copy_sidecar(&target_dest_path, &dest_path, &target) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let source_path = env::var("OPENCODE_BIN_PATH")
|
|
.ok()
|
|
.map(PathBuf::from)
|
|
.filter(|path| path.is_file())
|
|
.or_else(|| {
|
|
find_in_path(if target.contains("windows") {
|
|
"opencode.exe"
|
|
} else {
|
|
"opencode"
|
|
})
|
|
});
|
|
|
|
let Some(source_path) = source_path else {
|
|
println!(
|
|
"cargo:warning=OpenCode sidecar missing at {} (set OPENCODE_BIN_PATH or install OpenCode)",
|
|
dest_path.display()
|
|
);
|
|
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
return;
|
|
};
|
|
|
|
if fs::create_dir_all(&sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
let copied = copy_sidecar(&source_path, &dest_path, &target);
|
|
|
|
if copied {
|
|
#[cfg(unix)]
|
|
{
|
|
let _ = fs::set_permissions(&dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
let _ = copy_sidecar(&dest_path, &target_dest_path, &target);
|
|
} else {
|
|
println!(
|
|
"cargo:warning=Failed to copy OpenCode sidecar from {} to {}",
|
|
source_path.display(),
|
|
dest_path.display()
|
|
);
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
}
|
|
|
|
fn ensure_openwork_server_sidecar() {
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
|
|
let canonical_name = if target.contains("windows") {
|
|
"openwork-server.exe"
|
|
} else {
|
|
"openwork-server"
|
|
};
|
|
|
|
let mut target_name = format!("openwork-server-{target}");
|
|
if target.contains("windows") {
|
|
target_name.push_str(".exe");
|
|
}
|
|
|
|
let dest_path = sidecar_dir.join(canonical_name);
|
|
let target_dest_path = sidecar_dir.join(target_name);
|
|
|
|
if dest_path.exists() {
|
|
return;
|
|
}
|
|
|
|
if target_dest_path.exists() {
|
|
if copy_sidecar(&target_dest_path, &dest_path, &target) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let source_path = env::var("OPENWORK_SERVER_BIN_PATH")
|
|
.ok()
|
|
.map(PathBuf::from)
|
|
.filter(|path| path.is_file())
|
|
.or_else(|| {
|
|
find_in_path(if target.contains("windows") {
|
|
"openwork-server.exe"
|
|
} else {
|
|
"openwork-server"
|
|
})
|
|
});
|
|
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
|
|
let Some(source_path) = source_path else {
|
|
println!(
|
|
"cargo:warning=OpenWork server sidecar missing at {} (set OPENWORK_SERVER_BIN_PATH or install openwork-server)",
|
|
dest_path.display()
|
|
);
|
|
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
return;
|
|
};
|
|
|
|
if fs::create_dir_all(&sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
let copied = copy_sidecar(&source_path, &dest_path, &target);
|
|
|
|
if copied {
|
|
#[cfg(unix)]
|
|
{
|
|
let _ = fs::set_permissions(&dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
let _ = copy_sidecar(&dest_path, &target_dest_path, &target);
|
|
} else {
|
|
println!(
|
|
"cargo:warning=Failed to copy OpenWork server sidecar from {} to {}",
|
|
source_path.display(),
|
|
dest_path.display()
|
|
);
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
}
|
|
|
|
fn ensure_opencode_router_sidecar() {
|
|
let target = env::var("CARGO_CFG_TARGET_TRIPLE")
|
|
.or_else(|_| env::var("TARGET"))
|
|
.or_else(|_| env::var("TAURI_ENV_TARGET_TRIPLE"))
|
|
.unwrap_or_default();
|
|
if target.is_empty() {
|
|
return;
|
|
}
|
|
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR")
|
|
.map(PathBuf::from)
|
|
.unwrap_or_else(|_| PathBuf::from("."));
|
|
let sidecar_dir = manifest_dir.join("sidecars");
|
|
|
|
let canonical_name = if target.contains("windows") {
|
|
"opencode-router.exe"
|
|
} else {
|
|
"opencode-router"
|
|
};
|
|
|
|
let mut target_name = format!("opencode-router-{target}");
|
|
if target.contains("windows") {
|
|
target_name.push_str(".exe");
|
|
}
|
|
|
|
let dest_path = sidecar_dir.join(canonical_name);
|
|
let target_dest_path = sidecar_dir.join(target_name);
|
|
|
|
if dest_path.exists() {
|
|
return;
|
|
}
|
|
|
|
if target_dest_path.exists() {
|
|
if copy_sidecar(&target_dest_path, &dest_path, &target) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let source_path = env::var("OPENCODE_ROUTER_BIN_PATH")
|
|
.ok()
|
|
.map(PathBuf::from)
|
|
.filter(|path| path.is_file())
|
|
.or_else(|| {
|
|
find_in_path(if target.contains("windows") {
|
|
"opencode-router.exe"
|
|
} else {
|
|
"opencode-router"
|
|
})
|
|
});
|
|
|
|
let profile = env::var("PROFILE").unwrap_or_default();
|
|
|
|
let Some(source_path) = source_path else {
|
|
println!(
|
|
"cargo:warning=OpenCodeRouter sidecar missing at {} (set OPENCODE_ROUTER_BIN_PATH or install opencode-router)",
|
|
dest_path.display()
|
|
);
|
|
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
return;
|
|
};
|
|
|
|
if fs::create_dir_all(&sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
let copied = copy_sidecar(&source_path, &dest_path, &target);
|
|
|
|
if copied {
|
|
#[cfg(unix)]
|
|
{
|
|
let _ = fs::set_permissions(&dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
let _ = copy_sidecar(&dest_path, &target_dest_path, &target);
|
|
} else {
|
|
println!(
|
|
"cargo:warning=Failed to copy OpenCodeRouter sidecar from {} to {}",
|
|
source_path.display(),
|
|
dest_path.display()
|
|
);
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
|
|
if !dest_path.exists() {
|
|
create_debug_stub(&dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
if !target_dest_path.exists() {
|
|
create_debug_stub(&target_dest_path, &sidecar_dir, &profile, &target);
|
|
}
|
|
}
|
|
|
|
fn copy_sidecar(source_path: &PathBuf, dest_path: &PathBuf, target: &str) -> bool {
|
|
let mut copied = fs::copy(source_path, dest_path).is_ok();
|
|
|
|
#[cfg(unix)]
|
|
if !copied {
|
|
if std::os::unix::fs::symlink(source_path, dest_path).is_ok() {
|
|
copied = true;
|
|
}
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
if !copied {
|
|
if fs::hard_link(source_path, dest_path).is_ok() {
|
|
copied = true;
|
|
}
|
|
}
|
|
|
|
if copied {
|
|
#[cfg(unix)]
|
|
{
|
|
let _ = fs::set_permissions(dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
} else if target.contains("windows") {
|
|
let _ = fs::remove_file(dest_path);
|
|
}
|
|
|
|
copied
|
|
}
|
|
|
|
fn find_in_path(binary: &str) -> Option<PathBuf> {
|
|
let paths = env::var_os("PATH")?;
|
|
env::split_paths(&paths).find_map(|dir| {
|
|
let candidate = dir.join(binary);
|
|
if candidate.is_file() {
|
|
Some(candidate)
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
}
|
|
|
|
fn create_debug_stub(dest_path: &PathBuf, sidecar_dir: &PathBuf, profile: &str, target: &str) {
|
|
if profile == "release" || target.contains("windows") {
|
|
return;
|
|
}
|
|
|
|
if fs::create_dir_all(sidecar_dir).is_err() {
|
|
return;
|
|
}
|
|
|
|
let stub = "#!/usr/bin/env bash\n\
|
|
echo 'Sidecar missing. Install the binary or set the *_BIN_PATH env var.'\n\
|
|
exit 1\n";
|
|
if fs::write(dest_path, stub).is_ok() {
|
|
#[cfg(unix)]
|
|
let _ = fs::set_permissions(dest_path, fs::Permissions::from_mode(0o755));
|
|
}
|
|
}
|