wgpu/.travis.yml
2019-02-14 14:28:55 -05:00

18 lines
428 B
YAML

language: rust
rust:
- stable
- nightly
branches:
except:
- staging.tmp
before_install:
# Do not run bors builds against the nightly compiler.
# We want to find out about nightly bugs, so they're done in master, but we don't block on them.
- if [[ $TRAVIS_RUST_VERSION == "nightly" && $TRAVIS_BRANCH == "staging" ]]; then exit; fi
script:
- cargo test
- cargo check --manifest-path wgpu-native/Cargo.toml