-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (38 loc) · 1.56 KB
/
.travis.yml
File metadata and controls
44 lines (38 loc) · 1.56 KB
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
# based on the one from `crossbeam`
# thanks for the example!
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
rust:
- stable
- beta
- nightly
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# the main build
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo test -- --release &&
travis-cargo --only stable doc
after_success:
- travis-cargo --only stable doc-upload
- travis-cargo coveralls --no-sudo --verify
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
# encrypted token for doc uploads
- secure: "aZerty58Zc6LNsT/E+DWuzW59ItHzHb9oI5dmgndRcSTWRgAD7YRhSutCyxzg9LjtxfnE78CxG1xtFd23hDwXbVRCtGb0OpDv6H2M82hVRV3a1f5+c+7MagH/UrU/pJ3IKE6dldJa88ojNhZ8AsN9YB1Am2Z3DKbllrjtwKw5qJP20vp1T/e2tIrZH7/6aC2cHBDO42AQLqB6cc6169WNvjLTwBzdW/mbn6pjtBGg38/vEiJJ0R2bKmiD4V/jGFF6FR4K7Ntd+SlPledK40X1ReuReYae7P7mkFPprOF4J5u45QjW90DT2pOhLhjuibo7E66hZgezyRgd6NNYd57Z+QQDInoq9/pWsdz8PwXXog4+8/m6u0uUS4p34PPtr0NFTeedsOyNb/KbJGfljxw2NXxMUafRWFm6HJ6h2Gk0ZdUBOBuW77LlCAn6lhxX8AZ0cTkIi1TYSkwJXAqRhoaBUHEGREHDifHYDg4aC/uTW4wOPIIv0KZzl73TLKuu/z/kXpIbj91M4F+KQq9JMhksbPi/hlQe+BLZ1kfmwZjkYo1G335Xg3hy+EDGaalYtAwqY8zNv4qlm0w1Euj+QXfGf5LPUPO1sIz/AqHoIDuAMEZ80QPTcPjcKbzO3GYYrLcn69d1iQZkZvbmapsaELTFW2Tuo333k0JRtyA98fNKjA="
notifications:
email:
on_success: never