Files
rust/library/compiler-builtins/libm/ci/script.sh

13 lines
253 B
Bash
Raw Normal View History

2018-07-12 00:44:28 -05:00
set -euxo pipefail
main() {
cargo run --package test-generator --target x86_64-unknown-linux-musl
if hash cargo-fmt; then
# nicer syntax error messages (if any)
cargo fmt
fi
cross test --target $TARGET --release
}
main