mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
20 lines
494 B
YAML
20 lines
494 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 build --manifest-path wgpu-native/Cargo.toml --features remote
|
|
- cargo build
|
|
- (cd examples && make) #TODO
|