1
Fork 0
framed-rs/bin/build_local
2017-12-24 20:00:29 +00:00

12 lines
293 B
Bash
Executable file

#!/usr/bin/env bash
set -ex
# A simple build script to run locally.
for tc in stable beta nightly; do
echo "Toolchain: ${tc}";
rustup toolchain update ${tc};
cargo +${tc} test --verbose;
cargo +${tc} test --verbose --no-default-features;
cargo +${tc} doc --verbose;
done