cgmath/.travis.yml
2017-02-25 20:47:43 +08:00

12 lines
330 B
YAML

language: rust
rust:
- nightly
- beta
- stable
script:
- cargo build && cargo test
- if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo bench; fi
- if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo build --features "use_simd" && cargo test --features "use_simd" && cargo bench --features "use_simd"; fi