Travis CI: lock nightly to a version with Clippy

Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
Nick Cameron 2019-05-30 10:42:20 +12:00
parent e9d32b1ed0
commit 719b32edc5
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ addons:
- go
install:
# FIXME(#55) Remove when Clippy is fixed in current nightly
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then rustup toolchain install nightly-2019-05-22; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then rustup default nightly-2019-05-22; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then rustup component add rustfmt; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then rustup component add clippy; fi
- if [[ $TRAVIS_OS_NAME == "windows" ]]; then choco install golang cmake strawberryperl protoc; fi