wasmi/.travis.yml

44 lines
1.3 KiB
YAML
Raw Normal View History

2018-01-22 15:05:13 +00:00
dist: trusty
sudo: required
language:
- rust
- cpp
rust:
- nightly
- stable
2018-01-22 15:05:13 +00:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
2018-01-22 15:05:13 +00:00
- cmake
env:
- CC=/usr/bin/gcc-8 CXX=/usr/bin/g++-8
2018-01-26 13:47:30 +00:00
install:
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then rustup target add wasm32-unknown-unknown; fi
- rustup component add rustfmt
2018-01-22 15:05:13 +00:00
script:
- cargo fmt --all -- --check
2018-06-12 11:00:57 +00:00
# Make sure nightly targets are not broken.
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo check --tests --manifest-path=fuzz/Cargo.toml; fi
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo check --benches --manifest-path=benches/Cargo.toml; fi
# Make sure `no_std` version checks.
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo +nightly check --no-default-features --features core; fi
- ./test.sh
- ./doc.sh
2018-01-22 15:55:47 +00:00
after_success: |
2018-01-26 13:47:30 +00:00
# Build documentation and deploy it to github pages.
2018-01-22 15:55:47 +00:00
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
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 &&
2018-01-22 17:13:38 +00:00
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
cache: cargo
before_cache:
# Travis can't cache files that are not readable by "others"
- chmod -R a+r $HOME/.cargo