rusqlite/.travis.yml

20 lines
645 B
YAML
Raw Normal View History

2014-11-05 00:37:40 +08:00
language: rust
sudo: false
2014-11-05 01:50:47 +08:00
env:
global:
secure: "FyGzHF0AIYdBcuM/2qIoABotx3MbNAlaHDzxPbbeUlVg64bnuib9G9K/qWve0a1BWCgv+8e/SbXZb7gt3JlUNE27aE4RZG4FEdtEpLYQp87Dc9d9HX0FwpUeFK3binsrtYl4WEBnIjQ3ICnUVey0E6GHEdkM+t5bWyJO5c4dJ30="
2014-11-05 01:50:47 +08:00
2014-11-05 00:37:40 +08:00
script:
- cargo build
- cargo test
- cargo doc --no-deps
2014-11-05 01:50:47 +08:00
after_success: |
2015-05-04 09:50:50 +08:00
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=rusqlite/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages