Local build script tweaks: update toolchains first, build on beta.
This commit is contained in:
parent
40968c48b6
commit
a7709a5087
1 changed files with 6 additions and 0 deletions
|
@ -3,10 +3,16 @@ set -ex
|
||||||
|
|
||||||
# A simple build script to run locally.
|
# A simple build script to run locally.
|
||||||
|
|
||||||
|
rustup toolchain update stable;
|
||||||
|
rustup toolchain update beta;
|
||||||
|
rustup toolchain update nightly;
|
||||||
|
|
||||||
cargo +stable build --verbose;
|
cargo +stable build --verbose;
|
||||||
|
cargo +beta build --verbose;
|
||||||
|
|
||||||
cargo +nightly test --verbose;
|
cargo +nightly test --verbose;
|
||||||
cargo +nightly test --verbose --no-default-features;
|
cargo +nightly test --verbose --no-default-features;
|
||||||
|
|
||||||
cargo +stable doc --verbose;
|
cargo +stable doc --verbose;
|
||||||
|
cargo +beta doc --verbose;
|
||||||
cargo +nightly doc --verbose;
|
cargo +nightly doc --verbose;
|
||||||
|
|
Loading…
Reference in a new issue