Add Solstice CI workflow definition for Linux and Illumos builds

This commit is contained in:
Till Wegmueller 2025-10-26 16:37:16 +01:00
parent d05121b378
commit f3831dac4a
No known key found for this signature in database

17
.solstice/workflow.kdl Normal file
View file

@ -0,0 +1,17 @@
workflow name="Solstice CI for solstice-ci" {
// Linux build and test on Ubuntu 22.04 runner
job id="linux-build" runs_on="ubuntu-22.04" {
step name="Show toolchain" run="rustc -Vv && cargo -V"
step name="Format" run="cargo fmt --check"
step name="Clippy" run="cargo clippy --workspace --all-targets --all-features -- -D warnings"
step name="Build" run="cargo build --workspace"
step name="Test" run="cargo test --workspace --all-targets"
}
// Illumos build (bhyve zone). Keep steps minimal; clippy/format may vary per toolchain.
job id="illumos-build" runs_on="illumos-latest" {
step name="Show toolchain" run="rustc -Vv && cargo -V"
step name="Build" run="cargo build --workspace"
step name="Test" run="cargo test --workspace --all-targets"
}
}