Let's try to fix the 1.15 build

This commit is contained in:
Joonas Javanainen 2017-05-24 19:33:21 +03:00
parent ace021b94a
commit 3bef62fdc4
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179

View File

@ -18,5 +18,9 @@ before_install:
- git submodule update --init --recursive
script:
- cargo build --all --verbose
- [ $TRAVIS_RUST_VERSION != 1.15.1 ] && cargo build --all --verbose
# 1.15 doesn't yet support cargo build --all
- [ $TRAVIS_RUST_VERSION = 1.15.1 ] && cd imgui-sys && cargo build --verbose
- [ $TRAVIS_RUST_VERSION = 1.15.1 ] && cd imgui-glium-renderer && cargo build --verbose
- [ $TRAVIS_RUST_VERSION = 1.15.1 ] && cargo build --verbose
- cargo test --all --verbose