parity-common/.travis.yml

25 lines
628 B
YAML
Raw Normal View History

2018-07-06 05:14:52 -07:00
language: rust
branches:
only:
- master
2018-07-06 05:14:52 -07:00
matrix:
include:
- os: linux
rust: stable
- os: linux
rust: beta
- os: linux
rust: nightly
- os: osx
rust: stable
2018-08-13 06:55:39 -07:00
allow_failures:
- rust: nightly
2018-07-06 05:14:52 -07:00
script:
- cargo check --all --tests
2018-09-24 12:40:42 -07:00
- cargo build --all
2018-08-22 03:33:36 -07:00
- cargo test --all --exclude uint --exclude fixed-hash
- cd fixed-hash/ && cargo test --all-features && cd ..
- cd uint/ && cargo test --features=std,quickcheck --release && cd ..
2018-08-13 06:55:39 -07:00
- cd plain_hasher/ && cargo test --no-default-features && cd ..
- cd parity-util-mem/ && cargo test --features=estimate-heapsize && cd ..