2018-09-14 15:39:24 +00:00
|
|
|
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
|
2018-09-27 23:04:17 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- cargo test
|
|
|
|
- cargo build --manifest-path wgpu-native/Cargo.toml --features remote
|
|
|
|
- cargo build
|
2018-12-01 23:01:54 +00:00
|
|
|
- (cd examples && make) #TODO
|