rust-irc/.travis.yml
Aaron Weiss cad03f81e6
Revert "Added code coverage with cargo-travis."
It seems to hit an internal compiler error, so, that's not a great plan.

This reverts commit 5612c50f5a.
2018-02-26 20:09:37 +01:00

19 lines
529 B
YAML

language: rust
rust: stable
sudo: false
script:
- chmod +x mktestconfig.sh
- ./mktestconfig.sh
- cargo build --verbose
- rustdoc --test README.md --extern irc=target/debug/libirc.rlib -L target/debug/deps
- cargo test --verbose --features "toml yaml"
- cargo test --doc
- cargo test --verbose --no-default-features
notifications:
email: false
irc:
channels:
- "irc.fyrechat.net#vana-commits"
template:
- "%{repository_slug}/%{branch} (%{commit} - %{author}): %{message}"
skip_join: true