From d71023dc2bb13a77a670710d9216769ae86b9a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 12 Feb 2019 12:06:31 +0200 Subject: [PATCH] Update versions in Travis/AppVeyor configuration And also run tests with default features for all the crates. --- .travis.yml | 9 +++++---- appveyor.yml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70a3895..836f826 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,19 @@ +dist: xenial language: rust rust: - nightly - beta - - 1.28.0 # stable + - 1.31.0 # stable env: - - GTK=3.4 - - GTK=3.18 + - GTK=3.14 + - GTK=3.24 addons: apt: packages: - libgtk-3-dev script: - rustc --version - - if [ "$TRAVIS_RUST_VERSION" == "nightly" ] && [ "$GTK" == "3.4" ]; then + - if [ "$TRAVIS_RUST_VERSION" == "nightly" ] && [ "$GTK" == "3.14" ]; then make regen_check; fi - mkdir .cargo diff --git a/appveyor.yml b/appveyor.yml index 18f2d11..bc98d0c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,6 +21,6 @@ build_script: - git clone -q --depth 50 -b pending https://github.com/gtk-rs/examples _examples - cd _examples - cargo build - - cargo build --features gtk_3_18 + - cargo build --features gtk_3_24 test: false