language: rust
rust:
- 1.15.0 # Earliest that's known to work
- 1.19.0 # Firefox requirement
- stable
- beta
- nightly
env:
- RUST_BACKTRACE=1
- RUST_BACKTRACE=1 RUSTC_BOOTSTRAP=1
script:
- if [[ $RUSTC_BOOTSTRAP ]]; then cargo test --verbose --features 'simd-accel no-static-ideograph-encoder-tables serde'; fi
- if [[ -z $RUSTC_BOOTSTRAP ]]; then cargo test --verbose; fi
#matrix:
# allow_failures:
# - rust: nightly