Skip to content

Commit e9dcf45

Browse files
committed
chore(travis): add build config for 'stable' tests
1 parent 823b552 commit e9dcf45

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ matrix:
99
env: FEATURES="--features nightly" BENCH=true
1010
sudo: false
1111
- rust: beta
12+
sudo: false
13+
- rust: stable
1214
sudo: true
1315

1416
cache:
@@ -18,15 +20,15 @@ cache:
1820
script: ./.travis.sh
1921

2022
after_success: |
21-
[ $TRAVIS_RUST_VERSION = beta ] &&
23+
[ $TRAVIS_RUST_VERSION = stable ] &&
2224
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev &&
2325
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
2426
tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make &&
2527
sudo make install && cd ../.. &&
2628
kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/hyper-*
2729
[ $TRAVIS_BRANCH = master ] &&
2830
[ $TRAVIS_PULL_REQUEST = false ] &&
29-
[ $TRAVIS_RUST_VERSION = beta ] &&
31+
[ $TRAVIS_RUST_VERSION = stable ] &&
3032
cargo doc &&
3133
echo '<meta http-equiv=refresh content=0;url=hyper/index.html>' > target/doc/index.html &&
3234
pip install --user ghp-import &&

0 commit comments

Comments
 (0)