vulkano/.travis.yml

43 lines
1.3 KiB
YAML
Raw Normal View History

# The shaderc dependencies are already installed on the base images
# so we dont need to worry about installing them.
dist: xenial
os:
- linux
- osx
#- windows # Waiting on https://travis-ci.community/t/timeout-before-install-step/1502/3
2016-02-05 13:33:36 +00:00
language: rust
rust:
- nightly
- stable
cache:
cargo
2017-06-21 10:43:39 +00:00
2016-02-05 13:33:36 +00:00
script:
- git diff-tree --check $(git hash-object -t tree /dev/null) HEAD
- travis_wait cargo test --all -j 2
- cd examples
- cargo build -j 2
- cd .. # this is very important or else the below `cargo publish` will fail
2016-02-18 09:57:24 +00:00
after_success:
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
cargo publish --token ${CRATESIO_TOKEN} --manifest-path vk-sys/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
cargo publish --token ${CRATESIO_TOKEN} --manifest-path vulkano/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
cargo publish --token ${CRATESIO_TOKEN} --manifest-path vulkano-win/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
cargo publish --token ${CRATESIO_TOKEN} --manifest-path vulkano-shaders/Cargo.toml