rust-average/.travis.yml
Vinzent Steinberg 27a14185ee Don't run tests with minimal dependencies
Otherwise the build fails due to issues with rand 0.6.
2019-09-02 14:35:50 +02:00

28 lines
558 B
YAML

language: rust
rust:
- 1.32.0
env:
- ARCH=x86_64 FEATURES=''
- ARCH=i686 FEATURES=''
- ARCH=x86_64 FEATURES='serde1'
- ARCH=i686 FEATURES='serde1'
matrix:
include:
- rust: nightly
os: linux
name: "Minimal dependency versions"
script:
- cargo generate-lockfile -Z minimal-versions
- cargo check # Building the test results in problems with rand 0.6
addons:
apt:
packages:
- gcc-multilib
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbose --features "$FEATURES"