buildomat: add basic build/test job mimicking the Actions workflow

This commit is contained in:
Joshua M. Clulow 2021-11-19 12:14:31 -08:00
parent b2a833e351
commit 66b41ba301
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#!/bin/bash
#:
#: name = "build-and-test / illumos"
#: variety = "basic"
#: target = "helios"
#: rust_toolchain = "stable"
#:
set -o errexit
set -o pipefail
set -o xtrace
rustc --version
banner build
ptime -m cargo build --tests --verbose
banner test
ptime -m cargo test --verbose