2014-09-16 09:15:24 -05:00
|
|
|
language: rust
|
2019-01-02 16:15:41 -06:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- rust: stable
|
|
|
|
- rust: beta
|
|
|
|
- rust: nightly
|
|
|
|
- name: "master doc to gh-pages"
|
|
|
|
rust: nightly
|
|
|
|
script:
|
|
|
|
- cargo doc --no-deps
|
|
|
|
deploy:
|
|
|
|
provider: script
|
|
|
|
script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
|
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
|
|
|
branch: master
|
2014-06-20 19:08:00 -05:00
|
|
|
script:
|
2017-01-29 18:53:20 -06:00
|
|
|
- cargo test
|
2018-05-14 09:59:24 -05:00
|
|
|
- cargo test --features preserve_order
|
2017-11-12 19:26:09 -06:00
|
|
|
- cargo test --manifest-path test-suite/Cargo.toml
|
2014-09-22 23:43:30 -05:00
|
|
|
- rustdoc --test README.md -L target
|
2014-10-29 14:49:19 -05:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: never
|