mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-23 19:38:27 +00:00
Disable doc tests in imgui-winit-support until only a single version of winit is supported again.
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
sudo: false
|
|
dist: trusty
|
|
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
- 1.33.0
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
cache:
|
|
directories:
|
|
- /home/travis/.cargo
|
|
|
|
before_cache:
|
|
- rm -rf /home/travis/.cargo/registry
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
before_install:
|
|
- git submodule update --init --recursive
|
|
|
|
script:
|
|
- cargo build --all --verbose
|
|
- cargo test --all --verbose
|
|
- cargo build --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19
|
|
- cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19
|
|
- cargo build --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20
|
|
- cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20
|
|
- cargo build --all --verbose --manifest-path imgui-examples/Cargo.toml
|
|
- cargo test --all --verbose --manifest-path imgui-examples/Cargo.toml
|
|
- cargo build --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml
|
|
- cargo test --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml
|