Skip to content

Commit b29d96b

Browse files
committed
chore(travis): don't build docs with deps, or run full benchmarks
1 parent 5809455 commit b29d96b

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.travis.sh

-12
This file was deleted.

.travis.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ matrix:
55
- rust: nightly
66
env: FEATURES="--features nightly"
77
sudo: false
8-
- rust: nightly
9-
env: FEATURES="--features nightly" BENCH=true
10-
sudo: false
118
- rust: beta
129
sudo: false
1310
- rust: stable
@@ -17,7 +14,9 @@ cache:
1714
directories:
1815
- target
1916

20-
script: ./.travis.sh
17+
script:
18+
- cargo build --verbose $FEATURES
19+
- cargo test --verbose $FEATURES
2120

2221
after_success: |
2322
[ $TRAVIS_RUST_VERSION = stable ] &&
@@ -29,7 +28,7 @@ after_success: |
2928
[ $TRAVIS_BRANCH = master ] &&
3029
[ $TRAVIS_PULL_REQUEST = false ] &&
3130
[ $TRAVIS_RUST_VERSION = stable ] &&
32-
cargo doc &&
31+
cargo doc --no-deps &&
3332
echo '<meta http-equiv=refresh content=0;url=hyper/index.html>' > target/doc/index.html &&
3433
pip install --user ghp-import &&
3534
/home/travis/.local/bin/ghp-import -n target/doc &&

0 commit comments

Comments
 (0)