chrono/.travis.yml

36 lines
942 B
YAML
Raw Normal View History

2014-08-26 16:30:00 +00:00
language: rust
sudo: false
rust:
# 1.8.0 is the earliest known version that Cargo does work for the current crates.io-index repo.
# probably older versions work, but we are forced to use this as the minimum for Cargo...
- 1.8.0
- stable
- beta
- nightly
2014-08-26 16:30:00 +00:00
os:
- linux
- osx
matrix:
allow_failures:
- rust: nightly
2014-04-01 17:14:57 +00:00
env:
global:
2014-08-26 16:30:00 +00:00
- LD_LIBRARY_PATH: /usr/local/lib
script:
# interleave building and testing in hope that it saves time
# also avoid doc-testing multiple times---it takes a lot and rarely helps
2014-08-26 16:30:00 +00:00
- cargo build -v
- cargo test -v
- cargo build -v --features rustc-serialize
- cargo test -v --features rustc-serialize --lib
- cargo build -v --features serde
- cargo test -v --features serde --lib
notifications:
email: false
irc:
channels:
- "irc.mozilla.org#chronotope"
template:
- "%{repository_slug}/%{branch} (%{commit} - %{author}): %{message}"
skip_join: true