forked from projectfluent/fluent-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zibi Braniecki
committed
Oct 13, 2017
1 parent
6dfcf55
commit 11f25e5
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
sudo: false | ||
language: rust | ||
cache: cargo | ||
rust: | ||
- nightly | ||
# Dependencies of kcov, used by coverage | ||
addons: | ||
apt: | ||
packages: | ||
- libcurl4-openssl-dev | ||
- libelf-dev | ||
- libdw-dev | ||
- binutils-dev | ||
- cmake | ||
sources: | ||
- kalakris-cmake | ||
|
||
before_script: | ||
- | | ||
cargo install --force cargo-travis && | ||
export PATH=$HOME/.cargo/bin:$PATH | ||
# the main build | ||
script: | ||
- | | ||
cargo build && | ||
cargo test && | ||
cargo doc | ||
after_success: | ||
# measure code coverage and upload to coveralls.io | ||
- cargo coveralls |