1language: rust
2rust:
3  - 1.15.0 # Earliest that's known to work
4  - 1.19.0 # Firefox requirement
5  - stable
6  - beta
7  - nightly
8env:
9  - RUST_BACKTRACE=1
10  - RUST_BACKTRACE=1 RUSTC_BOOTSTRAP=1
11script:
12  - if [[ $RUSTC_BOOTSTRAP ]]; then cargo test --verbose --features 'simd-accel no-static-ideograph-encoder-tables serde'; fi
13  - if [[ -z $RUSTC_BOOTSTRAP ]]; then cargo test --verbose; fi
14#matrix:
15#  allow_failures:
16#    - rust: nightly
17