-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
39 lines (33 loc) · 956 Bytes
/
.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
sudo: required
language: rust
# Cache cargo symbols for faster build
cache: cargo
# Dependencies of kcov, used by coverage
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake # also required for cargo-update
sources:
- kalakris-cmake
rust:
- nightly
before_script:
- export PATH=$HOME/.cargo/bin:$PATH
- cargo +nightly install cargo-update || echo "cargo-update already installed"
- cargo +nightly install cargo-travis || echo "cargo-travis already installed"
- cargo +nightly install-update -a # update outdated cached binaries
script:
- |
cargo +nightly build &&
cargo +nightly test --all --verbose &&
cargo +nightly bench &&
cargo +nightly doc
after_success:
# measure code coverage and upload to coveralls.io
- cargo +nightly coveralls
# upload documentation to github.io (gh-pages branch)
- cargo +nightly doc-upload