-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Connects-To: #104 Change-Type: major
- Loading branch information
majorz
committed
Jun 29, 2017
1 parent
614e297
commit 1a31569
Showing
30 changed files
with
1,904 additions
and
677 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
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,24 @@ | ||
dist: trusty | ||
sudo: required | ||
language: rust | ||
cache: cargo | ||
rust: | ||
- nightly | ||
- beta | ||
- stable | ||
before_install: | ||
- sudo apt-get -qq update | ||
- sudo apt-get install -yq --no-install-recommends libdbus-1-dev | ||
install: | ||
- type -p cargo-install-update || cargo install cargo-update | ||
- cargo install-update -i cargo-update | ||
- cargo install-update -i rustfmt | ||
- if [ $TRAVIS_RUST_VERSION == nightly ]; then | ||
cargo install-update -i clippy; | ||
fi | ||
script: | ||
- cargo fmt -- --write-mode=diff | ||
- if [ $TRAVIS_RUST_VERSION == nightly ]; then | ||
cargo clippy -- -D warnings; | ||
fi | ||
- cargo build |
Oops, something went wrong.