1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore: install Qt 5.6 in travis

This commit is contained in:
TriKriSta 2018-07-14 00:59:28 +03:00
parent 706822123f
commit 5668aa57c5

View File

@ -19,8 +19,8 @@
# stop as soon as one of steps will fail
set -e -o pipefail
# Qt 5.5, since that's the lowest supported version
sudo add-apt-repository -y ppa:beineri/opt-qt551-trusty
# Qt 5.6, since that's the lowest supported version
sudo add-apt-repository -y ppa:beineri/opt-qt562-trusty
sudo apt-get update -qq
# install needed Qt, OpenAL, opus, qrencode, GTK tray deps, sqlcipher
@ -42,15 +42,15 @@ sudo apt-get install -y --force-yes \
libtool \
libvpx-dev \
libxss-dev qrencode \
qt55base \
qt55script \
qt55svg \
qt55tools \
qt55xmlpatterns \
qt56base \
qt56script \
qt56svg \
qt56tools \
qt56xmlpatterns \
pkg-config || yes
# Qt
source /opt/qt55/bin/qt55-env.sh || yes
source /opt/qt56/bin/qt56-env.sh || yes
# ffmpeg
if [ ! -e "libs" ]; then mkdir libs; fi