Skip to content

Commit

Permalink
buildomat: add basic build/test job mimicking the Actions workflow (#87)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Leventhal <[email protected]>
  • Loading branch information
jclulow and ahl authored May 31, 2022
1 parent 8802d9d commit 5ab8279
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/buildomat/jobs/build-and-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
#:
#: name = "build-and-test / illumos"
#: variety = "basic"
#: target = "helios"
#: rust_toolchain = "stable"
#:

set -o errexit
set -o pipefail
set -o xtrace

cargo --version
rustc --version

banner build
ptime -m cargo build --locked --all-targets --verbose

banner test
ptime -m cargo test --locked --verbose

0 comments on commit 5ab8279

Please sign in to comment.