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

13 lines
274 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
2018-07-12 00:53:44 -05:00
if cargo fmt --version >/dev/null 2>&1; then
2018-07-12 00:44:28 -05:00
# nicer syntax error messages (if any)
cargo fmt
fi
cross test --target $TARGET --release
}
main