wasmi/.travis.yml

27 lines
688 B
YAML
Raw Normal View History

2018-01-22 15:05:13 +00:00
dist: trusty
sudo: required
language:
- rust
- cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- cmake
script:
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
- cargo build --verbose
- cargo test --verbose
- cargo test --manifest-path=spec/Cargo.toml
2018-01-22 15:55:47 +00:00
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
cargo doc &&
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/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