diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-29 07:26:48 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-29 07:55:25 -0700 |
commit | a156e562664feaa8c34b6bfa06a5f6a7f115fde0 (patch) | |
tree | f91d4a8a4d85f8671940e2a176b51dcd5c763cf5 | |
parent | 3cd584e1372afcd9e66152b5ca2bb50d6fa95eba (diff) | |
download | subsurface-a156e562664feaa8c34b6bfa06a5f6a7f115fde0.tar.gz |
Travis: switch to Qt 5.9.1
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 6b34c4771..0f17dd94f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,11 +29,11 @@ addons: - mesa-common-dev before_install: - - if [ ! -e Qt/5.9 ] ; then + - if [ ! -e Qt/5.9.1 ] ; then rm -rf Qt ; - wget http://download.qt.io/official_releases/qt/5.9/5.9.0/qt-opensource-linux-x64-5.9.0.run ; - chmod +x ./qt-opensource-linux-x64-5.9.0.run ; - ./qt-opensource-linux-x64-5.9.0.run -platform minimal --script qt-installer-noninteractive.qs --no-force-installations ; + wget http://download.qt.io/official_releases/qt/5.9/5.9.1/qt-opensource-linux-x64-5.9.1.run ; + chmod +x ./qt-opensource-linux-x64-5.9.1.run ; + ./qt-opensource-linux-x64-5.9.1.run -platform minimal --script qt-installer-noninteractive.qs --no-force-installations ; fi # TestPreferences uses gui calls, so run a xvfb so it has something to talk to - "export DISPLAY=:99.0" @@ -41,7 +41,7 @@ before_install: script: - - export CMAKE_PREFIX_PATH=$PWD/Qt/5.9/gcc_64/lib/cmake ; + - export CMAKE_PREFIX_PATH=$PWD/Qt/5.9.1/gcc_64/lib/cmake ; cd .. ; bash -e ./subsurface/scripts/build.sh -both - env CTEST_OUTPUT_ON_FAILURE=1 make -C subsurface/build check |