rust-postgres/.travis.yml

15 lines
469 B
YAML
Raw Normal View History

2014-08-23 23:03:56 +00:00
language: rust
2016-07-16 18:54:18 +00:00
cache: cargo
2015-07-31 04:24:59 +00:00
sudo: required
2015-04-28 05:56:06 +00:00
rust:
- nightly
- 1.13.0
2013-12-10 16:45:53 +00:00
addons:
2015-02-08 06:15:32 +00:00
postgresql: 9.4
2013-10-08 06:34:59 +00:00
before_script:
- "./.travis/setup.sh"
2013-10-08 04:59:06 +00:00
script:
2016-12-20 23:34:16 +00:00
- cargo test --manifest-path=postgres/Cargo.toml
- cargo test --manifest-path=postgres/Cargo.toml --features "$(cargo read-manifest --manifest-path=postgres/Cargo.toml | jq -r '.features|keys|map(select(. != "with-security-framework" and . != "with-schannel"))|join(" ")')"
2016-12-26 21:41:09 +00:00
- cargo test --manifest-path=tokio-postgres/Cargo.toml