-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
80 lines (68 loc) · 1.26 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
branches:
only:
- master
- staging
- trying
dist: trusty
sudo: false
addons:
apt:
packages:
- gcc
- g++
- libssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- libiberty-dev
- pkg-config
language: rust
rust:
- nightly-2018-11-18
matrix:
allow_failures:
- rust: nightly
cache:
directories:
- "$HOME/.cargo"
- "$HOME/.local"
- "$TRAVIS_BUILD_DIR/target"
env:
global:
- DEADLINKS_VERS=0.3.0
- RUSTFLAGS="-C link-dead-code"
- RUST_LOG=off
install:
- cargo install --list
- cd $TRAVIS_BUILD_DIR
- cargo update
script: skip
jobs:
include:
- stage: test
env:
- FEATURE=test
rust: nightly-2018-11-18
script:
- cargo test --verbose --all
- stage: test
env:
- FEATURE=test
rust: nightly
script:
- cargo test --verbose --all
- stage: quality
env:
- FEATURE=non-fatal-checks
install:
- cargo-deadlinks -V | grep $DEADLINKS_VERS || cargo install cargo-deadlinks --vers $DEADLINKS_VERS --force
script:
- cargo doc --no-deps && cargo deadlinks --dir target/doc || true
- stage: quality
env:
- FEATURE=clippy
rust: nightly-2018-11-18
install:
- rustup component add clippy-preview
script:
- cargo clippy -- -D warnings