mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
15 lines
381 B
Text
15 lines
381 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
# Build Debian package for the orchestrator using cargo-deb
|
||
|
|
if ! command -v cargo-deb >/dev/null 2>&1; then
|
||
|
|
cargo install cargo-deb
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Build release binary first for reproducible asset path
|
||
|
|
cargo build -p orchestrator --release
|
||
|
|
|
||
|
|
# Package orchestrator
|
||
|
|
cargo deb -p orchestrator --no-build
|
||
|
|
|
||
|
|
echo "\nDebs written under target/debian/*.deb"
|