43 lines
956 B
YAML
43 lines
956 B
YAML
language: rust
|
|
|
|
sudo: false
|
|
dist: trusty
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
- binutils-dev
|
|
- libiberty-dev
|
|
- gcc-multilib
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
rust: 1.26.0
|
|
- os: linux
|
|
rust: 1.27.0
|
|
- os: osx
|
|
rust: 1.27.0
|
|
- os: linux
|
|
rust: beta
|
|
- os: linux
|
|
rust: nightly
|
|
|
|
install:
|
|
- if [ "$TRAVIS_OS_NAME" = 'linux' ]; then OS=unknown-linux-gnu; else OS=apple-darwin; fi
|
|
- rustup target add i686-$OS
|
|
|
|
script:
|
|
- cargo test --no-default-features
|
|
- cargo test
|
|
- if [ "$TRAVIS_RUST_VERSION" = 'nightly' ]; then cargo test --features bench && cargo bench --features bench; fi
|
|
- cargo test --target i686-$OS
|
|
|
|
after_success:
|
|
- cargo install cargo-kcov
|
|
- cargo kcov --print-install-kcov-sh | bash
|
|
- cargo kcov --coveralls
|
|
|