2014-07-31 02:04:48 +10:00
|
|
|
language: rust
|
2014-08-03 17:25:30 +10:00
|
|
|
|
2014-12-17 20:33:49 +11:00
|
|
|
env:
|
|
|
|
global:
|
2014-12-17 20:43:29 +11:00
|
|
|
- secure: "FfubMXYXu2e7chvdfKBkc+aKPkvoBOb5Idg0KCYuD++qPFIBYg6pUE8H8WvU+V7RsEBu5vshhn3dzjkKs+LXIdo5PQUMZutAgy83g5SGxRn8Ra79GjBVBs6+XOEhFun/+7fGj2Ly/AK6BTDpqyYAhAUS7jIaF6/+JWNwPwEYfdQ="
|
2014-12-17 20:33:49 +11:00
|
|
|
|
2014-09-20 04:32:30 +10:00
|
|
|
install:
|
2014-10-05 04:17:02 +11:00
|
|
|
- sudo apt-get install libXxf86vm-dev libosmesa6-dev
|
|
|
|
|
|
|
|
script:
|
|
|
|
- cargo build --verbose
|
2014-10-11 01:02:15 +11:00
|
|
|
- cargo test --no-run --verbose
|
2014-11-01 04:57:28 +11:00
|
|
|
- cargo test --verbose --features "headless" --no-default-features
|
2014-09-20 04:32:30 +10:00
|
|
|
|
2014-08-03 17:25:30 +10:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2014-12-17 20:33:49 +11:00
|
|
|
|
|
|
|
after_success: |
|
|
|
|
[ $TRAVIS_BRANCH = master ] &&
|
|
|
|
[ $TRAVIS_PULL_REQUEST = false ] &&
|
2014-12-29 01:54:27 +11:00
|
|
|
cargo doc --features "window headless" &&
|
2014-12-17 20:33:49 +11:00
|
|
|
echo '<meta http-equiv=refresh content=0;url=glutin/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
|