diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-03-22 07:57:04 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-03-22 07:58:04 -0700 |
commit | bca7f8ed6140e333b9858fafb4427f1a2924cb4a (patch) | |
tree | bc52c619f49a183ffb897fac3e16bb21db046d35 /scripts/qt55 | |
parent | 99bc940551313895ad44d425c927eb34217c508e (diff) | |
download | subsurface-bca7f8ed6140e333b9858fafb4427f1a2924cb4a.tar.gz |
Travis: test build against Qt 5.5
We do this in a docker environment to make things fast and easy.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/qt55')
-rw-r--r-- | scripts/qt55/after_success.sh | 3 | ||||
-rw-r--r-- | scripts/qt55/before_install.sh | 23 | ||||
-rw-r--r-- | scripts/qt55/travisbuild.sh | 7 |
3 files changed, 33 insertions, 0 deletions
diff --git a/scripts/qt55/after_success.sh b/scripts/qt55/after_success.sh new file mode 100644 index 000000000..94894e959 --- /dev/null +++ b/scripts/qt55/after_success.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "Build with Qt 5.5 succeeded" diff --git a/scripts/qt55/before_install.sh b/scripts/qt55/before_install.sh new file mode 100644 index 000000000..5859da915 --- /dev/null +++ b/scripts/qt55/before_install.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Travis only pulls shallow repos. But that messes with git describe. +# Sorry Travis, fetching the whole thing and the tags as well... +git fetch --unshallow +git pull --tags +git describe + +# Ugly, but keeps it running during the build +docker run -v $PWD:/workspace/subsurface --name=builder -w /workspace -d ubuntu:16.04 /bin/sleep 60m + +# Subsurface build dependencies +docker exec -t builder apt-get update +docker exec -t builder apt-get install -y wget unzip bzip2 \ + git g++ make autoconf automake libtool cmake pkg-config \ + libxml2-dev libxslt1-dev libzip-dev libsqlite3-dev \ + libusb-1.0-0-dev libssl-dev \ + qt5-default qt5-qmake qtchooser qttools5-dev-tools libqt5svg5-dev \ + libqt5webkit5-dev libqt5qml5 libqt5quick5 qtdeclarative5-dev \ + qtscript5-dev libssh2-1-dev libcurl4-openssl-dev qttools5-dev \ + qtconnectivity5-dev qtlocation5-dev qtpositioning5-dev \ + libcrypto++-dev libssl-dev qml-module-qtpositioning qml-module-qtlocation \ + qml-module-qtquick2 diff --git a/scripts/qt55/travisbuild.sh b/scripts/qt55/travisbuild.sh new file mode 100644 index 000000000..c3fcb846f --- /dev/null +++ b/scripts/qt55/travisbuild.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +set -x +set -e + +docker exec -t builder subsurface/scripts/build.sh -desktop + |