-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
59 lines (52 loc) · 1.45 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
sudo: required
language: rust
cache: cargo
addons:
apt:
packages:
- libcurl4-openssl-dev # cargo-travis
- libelf-dev # cargo-travis
- libdw-dev # cargo-travis
- binutils-dev # cargo-travis
- cmake # cargo-travis, cargo-update, semantic-rs
- libssl-dev # semantic-rs
- pkg-config # semantic-rs
- zlib1g-dev # semantic-rs
sources:
- kalakris-cmake
# run builds for all the trains (and more)
rust:
- nightly
- beta
# check it compiles on the latest stable compiler
- stable
# and the first stable one (this should be bumped as the minimum
# Rust version required changes)
- 1.29.1
matrix:
fast_finish: true
allow_failures:
- rust: nightly
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
- cargo install cargo-update || echo "cargo-update already installed"
- cargo install cargo-travis || echo "cargo-travis already installed"
- cargo install semantic-rs || echo "semantic-rs already installed"
- cargo install-update -a # update outdated cached binaries
script:
- cargo fmt -- --check
- cargo clippy -- -D warnings
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success:
# measure code coverage and upload to coveralls.io
- cargo coveralls
# upload documentation to github.io (gh-pages branch)
- cargo doc-upload
branches:
only:
- staging # bors r+
- trying # bors try
- master