-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
72 lines (63 loc) · 1.92 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
language: rust
matrix:
include:
- name: "stable"
rust: stable
sudo: required
before_script: rustup component add clippy
script:
- cargo test --all-features --all
- cargo clippy --all-features --all
env: RUSTFLAGS="-C link-dead-code -D warnings"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/*; do if ! [ -x $file -a -f $file ]; then continue; fi; mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
- name: "beta test"
rust: beta
script: cargo test --all-features --all
- name: "beta build"
rust: beta
script: cargo build --all-features
env: RUSTFLAGS="-D warnings"
- name: "beta clippy"
rust: beta
before_script: rustup component add clippy
script: cargo clippy --all-features --all
env: RUSTFLAGS="-D warnings"
- name: "nightly test"
rust: nightly
script: cargo test --all-features --all
- name: "nightly build"
rust: nightly
script: cargo build --all-features
env: RUSTFLAGS="-D warnings"
- name: "nightly clippy"
rust: nightly
before_script: rustup component add clippy
script: cargo clippy --all-features --all
env: RUSTFLAGS="-D warnings"
allow_failures:
- rust: nightly
- name: "beta build"
- name: "beta clippy"