solana/ci/test-stable.sh

14 lines
189 B
Bash
Raw Normal View History

2018-05-21 23:02:54 -07:00
#!/bin/bash -e
cd $(dirname $0)/..
2018-05-22 16:57:14 -07:00
rustc --version
cargo --version
2018-05-21 23:02:54 -07:00
rustup component add rustfmt-preview
cargo fmt -- --write-mode=diff
cargo build --verbose
cargo test --verbose
exit 0