no_std support
[anymap] / .travis.yml
index 863799b0e362b51cfb665b65c2356f1f279b978c..b5c4583272b6a3db8e2526a6234b019e37fda609 100644 (file)
@@ -1,11 +1,12 @@
 language: rust
-env:
-  global:
-    - secure: nR+DJRUQ9v03nNZMpMu1tGKLKBAqdQsTIAr8ffdl+DUEh3b2jvQ+vLLNFLPjsloqhoOXo7cWO7qVpiE4ZOq2lNDURQjdiZGFjh/Y5+xKy2BqFdV7qQ1JoBzsMyx28tQTYz0mtBsACiCYKKb+ddNX5hpwrsjp8cS7htZktA5kbiU=
+rust:
+  - 1.36.0
+  - nightly
+  - stable
 script:
-  - cargo build --verbose
-  - cargo test --verbose
-  - cargo doc --verbose
-after_script:
-  - ln -s target/doc doc
-  - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
+  - if [[ "$(rustc --version)" =~ -(dev|nightly) ]]; then cargo bench; fi
+  - if [[ "$(rustc --version)" =~ 1.36.0 ]]; then cp test-oldest-Cargo.lock Cargo.lock; fi
+  - cargo test
+  - cargo test --release
+  - cargo test --no-default-features --features hashbrown
+  - cargo test --release --no-default-features --features hashbrown