cargo doc builds run with --no-deps. Should be faster.
This commit is contained in:
parent
9f0b5b4203
commit
776b1d0f98
2 changed files with 4 additions and 2 deletions
|
@ -10,5 +10,5 @@ for tc in nightly stable beta; do
|
|||
cargo +${tc} test --verbose --no-default-features;
|
||||
cargo +${tc} test --verbose --no-default-features --features=typed;
|
||||
cargo +${tc} test --verbose --features=trace;
|
||||
cargo +${tc} doc --verbose;
|
||||
cargo +${tc} doc --verbose --no-deps;
|
||||
done
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
# TODO: Fix me.
|
||||
|
||||
echo "TRAVIS_RUST_VERSION: '${TRAVIS_RUST_VERSION}'"
|
||||
set -x
|
||||
|
||||
|
@ -8,4 +10,4 @@ cargo test --verbose;
|
|||
cargo test --verbose --no-default-features;
|
||||
cargo test --verbose --no-default-features --features=typed;
|
||||
cargo test --verbose --features=trace;
|
||||
cargo doc --verbose;
|
||||
cargo doc --verbose --no-deps;
|
||||
|
|
Loading…
Reference in a new issue