rust-irc/.travis.yml

24 lines
616 B
YAML
Raw Normal View History

2014-09-11 17:26:31 +02:00
language: rust
2016-03-26 04:07:47 +01:00
rust: stable
sudo: false
2014-09-11 17:26:31 +02:00
script:
- chmod +x mktestconfig.sh
- ./mktestconfig.sh
- pushd irc-proto
- cargo test --verbose
- popd
- cargo build --verbose
- rustdoc --test README.md --extern irc=target/debug/libirc.rlib -L target/debug/deps
- cargo test --verbose --features "toml yaml"
2017-11-16 17:32:09 +01:00
- cargo test --doc
2015-01-01 02:40:57 +01:00
- cargo test --verbose --no-default-features
2018-10-07 18:06:29 +02:00
- cargo run --bin build-bot
2014-09-11 17:26:31 +02:00
notifications:
email: false
2014-09-11 17:26:31 +02:00
irc:
channels:
- "ircs://irc.pdgn.co:6697/#commits"
2014-09-11 17:26:31 +02:00
template:
- "%{repository_slug}/%{branch} (%{commit} - %{author}): %{message}"
skip_join: true