mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
7 lines
256 B
Text
7 lines
256 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
# Build all crates in the workspace (debug)
|
||
|
|
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
|