Files
solana/ci/test-nightly.sh
Greg Fitzgerald 8d26be8b89 Run benchmarks in nightly
And name functions the same way as test functions
2018-05-26 00:36:50 -06:00

14 lines
240 B
Bash
Executable File

#!/bin/bash -e
cd $(dirname $0)/..
rustc --version
cargo --version
rustup component add rustfmt-preview
cargo build --verbose --features unstable
cargo test --verbose --features unstable
cargo bench --verbose --features unstable
exit 0