Browse Source

TravisCI: Raise minimum Qt version to 5.14.2

adaptive-webui-19844
sledgehammer999 3 years ago committed by Vladimir Golovnev (Glassez)
parent
commit
f97a1103b1
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  1. 8
      .travis.yml

8
.travis.yml

@ -47,12 +47,13 @@ addons: @@ -47,12 +47,13 @@ addons:
# sources list: https://github.com/travis-ci/apt-source-safelist/blob/master/ubuntu.json
- sourceline: 'deb https://apt.kitware.com/ubuntu/ focal main'
key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc'
- sourceline: 'ppa:beineri/opt-qt-5.14.2-focal'
packages:
# packages list: https://github.com/travis-ci/apt-package-safelist/blob/master/ubuntu-trusty
- [autoconf, automake, cmake, colormake]
- [libboost-dev, libboost-system-dev]
- libssl-dev
- [qtbase5-dev, libqt5svg5-dev, qttools5-dev]
- [qt514base, qt514svg, qt514tools]
- zlib1g-dev
before_install:
@ -75,6 +76,11 @@ before_install: @@ -75,6 +76,11 @@ before_install:
# if they don't call the new binary directly
alias cmake="/usr/bin/cmake"
# Qt 5.14.2
PATH="/opt/qt514/bin:$PATH"
qmake_conf="$qmake_conf PKG_CONFIG_PATH=/opt/qt514/lib/pkgconfig:$PKG_CONFIG_PATH"
cmake_conf="$cmake_conf PKG_CONFIG_PATH=/opt/qt514/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
fi
- |

Loading…
Cancel
Save