-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy path.travis.yml
37 lines (33 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
os:
- linux
- osx
- windows
language: rust
rust:
- stable
- beta
- nightly
# Apparently (according to VSCode),
# `cache: rust` is invalid
# Should be `cache: cargo`,
# but this seems to hang the build on windows
# Uncomment the below line and comment out the current line to enable cargo caching:
# cache: cargo
cache: rust
matrix:
allow_failures:
- rust: nightly
# Use the msvc toolchain of rust on windows
# The Travis default is _-x86_64-pc-windows-gnu
# But since we need windows libraries for this crate,
# _-x86_64-pc-windows-msvc needs to be used instead.
# See https://github.com/rust-lang/rustup/blob/master/README.md#working-with-rust-on-windows
before_script:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then rustup toolchain add $TRAVIS_RUST_VERSION-x86_64-pc-windows-msvc && rustup default $TRAVIS_RUST_VERSION-x86_64-pc-windows-msvc ; fi
script:
- cargo test --all --verbose
# Note: Whilst Travis says to install these in the before_script,
# on nightly the install command fails
# so the install happens after tests so nightly tests are still ran
- rustup component add clippy rustfmt
- cargo clippy