salsa/.travis.yml

30 lines
737 B
YAML
Raw Normal View History

2018-09-30 11:39:52 +00:00
language: rust
2019-01-31 15:33:28 +00:00
sudo: false
2018-09-30 11:39:52 +00:00
rust:
2018-12-13 10:32:16 +00:00
- nightly
2018-10-09 19:42:07 +00:00
- beta
2018-12-13 10:32:16 +00:00
- stable
2019-01-31 15:33:28 +00:00
cache:
- cargo
2018-12-13 10:32:16 +00:00
matrix:
allow_failures:
- rust: nightly
before_install:
- cargo install mdbook --version '0.3.1' --debug --force
- cargo install mdbook-linkcheck --version '0.4.0' --debug --force
- cargo install mdbook-mermaid --version '^0.4' --debug --force
2018-09-30 11:39:52 +00:00
script:
2019-01-31 15:33:28 +00:00
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --examples --all
- cd book && mdbook build && mdbook test
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
2019-09-30 12:17:23 +00:00
local-dir: book/book/html
2019-01-31 15:33:28 +00:00
keep-history: false
on:
branch: master