1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/.travis.yml
Yuki Okushi bb639d5fe3
Prevent jobs from being terminated on Travis (#167)
* Prevent jobs from being terminated

* Fix installing clippy

* Fix command

* Run Clippy on nightly
2019-09-02 18:20:15 +09:00

46 lines
873 B
YAML

language: rust
sudo: false
dist: trusty
cache:
apt: true
directories:
- $HOME/.cargo
- $HOME/.rustup
before_cache:
- rm -rf $HOME/.cargo/registry
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
allow_failures:
- rust: nightly
env:
global:
# - RUSTFLAGS="-C link-dead-code"
- OPENSSL_VERSION=openssl-1.0.2
before_install:
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
- sudo apt-get update -qq
- sudo apt-get install -qq libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
# Add clippy
before_script:
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
rustup component add clippy --toolchain=nightly
fi
- export PATH=$PATH:~/.cargo/bin
script:
- cargo check --all
- |
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
cargo clippy
fi