Skip to content

Commit

Permalink
Update .travis.yml to work against nightly-2019-02-08
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeder committed Apr 28, 2019
1 parent 142d5a4 commit 4c60038
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
language: rust
rust:
- stable
- nightly
- nightly-2019-02-08
cache: cargo
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install qt5-default qttools5-dev-tools
before_script:
- rustup component add clippy
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
rustup toolchain add nightly-2019-02-08
rustup component add --toolchain nightly-2019-02-08 clippy
else
rustup component add clippy
fi
script:
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test --release

0 comments on commit 4c60038

Please sign in to comment.