vulkano/.travis.yml

71 lines
2.0 KiB
YAML
Raw Normal View History

2016-02-05 13:33:36 +00:00
language: rust
jobs:
fast_finish: true
include:
# - os: windows
# env: PYTHONPATH=C:\Python38
# env: PATH="C:\Python38;$PATH"
# rust:
# - stable
# - os: windows
# env: PYTHONPATH=C:\Python38
# env: PATH="C:\Python38;$PATH"
# rust:
# - nightly
- os: linux
dist: bionic
rust:
- stable
# Nightly build turned off until #1423 resolved
# - os: linux
# dist: bionic
# rust:
# - nightly
- os: osx
rust:
- stable
- os: osx
rust:
- nightly
cache:
directories:
- $TRAVIS_HOME/.cargo/
- $TRAVIS_BUILD_DIR/target/debug/build
- $TRAVIS_BUILD_DIR/target/debug/deps
- $TRAVIS_BUILD_DIR/target/debug/incremental
before_cache:
- rm -rf $TRAVIS_HOME/.cargo/registry/src
2017-06-21 10:43:39 +00:00
before_install:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install ninja; choco install python3 --params "/InstallAllUsers"; fi
2016-02-05 13:33:36 +00:00
script:
- git diff-tree --check $(git hash-object -t tree /dev/null) HEAD
- travis_wait 30 cargo build -j 2 --all
- travis_wait 30 cargo test -j 2 --all
2016-02-18 09:57:24 +00:00
after_success:
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
2019-11-03 09:00:35 +00:00
travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vk-sys/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
2019-11-03 09:00:35 +00:00
travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
2019-11-03 09:00:35 +00:00
travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano-win/Cargo.toml
- |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_OS_NAME = linux ] &&
2019-11-03 09:00:35 +00:00
travis_wait 30 cargo publish -j 2 --token ${CRATESIO_TOKEN} --manifest-path vulkano-shaders/Cargo.toml