progenitor/.github/buildomat/jobs/build-and-test.sh

20 lines
285 B
Bash
Raw Normal View History

#!/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