parity-common/.travis.yml

14 lines
363 B
YAML
Raw Normal View History

2018-07-06 05:14:52 -07:00
language: rust
rust:
2018-08-13 06:55:39 -07:00
- stable
2018-07-06 05:14:52 -07:00
- nightly
matrix:
2018-08-13 06:55:39 -07:00
allow_failures:
- rust: nightly
2018-07-06 05:14:52 -07:00
script:
2018-08-13 06:55:39 -07:00
- cargo build
- cargo test --all --exclude uint
- cd uint/ && cargo test --features=std,impl_quickcheck_arbitrary --release && cd ..
2018-08-13 06:55:39 -07:00
- cd hashdb/ && cargo test --no-default-features && cd ..
- cd plain_hasher/ && cargo test --no-default-features && cd ..