cgmath/.travis.yml

12 lines
363 B
YAML
Raw Normal View History

2014-08-11 06:10:37 +00:00
language: rust
2015-05-06 14:15:44 +00:00
2015-04-06 17:22:32 +00:00
rust:
2015-12-20 20:24:56 +00:00
- nightly
- beta
- stable
2015-05-06 14:15:44 +00:00
2013-10-14 11:49:04 +00:00
script:
2017-04-04 21:48:41 +00:00
- cargo build && cargo test && cargo test --features "eders"
2017-02-25 12:47:43 +00:00
- 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