mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 21:30:41 +00:00
This commit introduces: - Flexible runner URL configuration via `SOLSTICE_RUNNER_URL(S)` for cloud-init. - Automated detection of OS-specific runner binaries during VM boot. - Tasks for cross-building, serving, and orchestrating Solstice runners. - End-to-end VM build flows for Linux and Illumos environments. - Enhanced orchestration with multi-runner HTTP serving and log streaming.
7 lines
No EOL
268 B
Bash
Executable file
7 lines
No EOL
268 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
# Build all crates in the workspace (release)
|
|
export RUSTFLAGS=${RUSTFLAGS:-}
|
|
export RUST_LOG=${RUST_LOG:-info}
|
|
command -v cargo >/dev/null 2>&1 || { echo "cargo is required" >&2; exit 127; }
|
|
exec cargo build --workspace --release |