diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-07-09 10:56:11 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-09 15:23:49 -0700 |
commit | 7ab9bf3ad746b0223ada53d59cab48b0ba29eacb (patch) | |
tree | 15949904c323afa35a7b62cf8ccfc923a5bcc406 /scripts/ios | |
parent | 066e01f66ddaec6df11d0e97f3ea84250a8a8f05 (diff) | |
download | subsurface-7ab9bf3ad746b0223ada53d59cab48b0ba29eacb.tar.gz |
Travis: build iOS against Qt 5.11.1
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/ios')
-rw-r--r-- | scripts/ios/before_install.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/scripts/ios/before_install.sh b/scripts/ios/before_install.sh index 51348796d..faf2e89c0 100644 --- a/scripts/ios/before_install.sh +++ b/scripts/ios/before_install.sh @@ -30,13 +30,15 @@ popd pushd ${TRAVIS_BUILD_DIR}/.. echo "Get custom Qt build and unpack it" -curl --output ./Qt5.10.1-iOS.tar.xz \ - https://storage.googleapis.com/travis-cache/Qt5.10.1-iOS.tar.xz -tar xJf Qt5.10.1-iOS.tar.xz +curl --output ./Qt-5.11.1-ios.tar.xz \ + https://storage.googleapis.com/travis-cache/Qt-5.11.1-ios.tar.xz +md5 ./Qt-5.11.1-ios.tar.xz -# our scripts assume that there are two convenience links - arguably this -# should be fixed in the scripts, but... -ln -s Qt5.10.1 Qt +mkdir -p Qt/5.11.1 + +tar -xJ -C Qt/5.11.1 -f Qt-5.11.1-ios.tar.xz + +# our scripts assume that there is a convenience link cd subsurface/packaging/ios ln -s ${TRAVIS_BUILD_DIR}/../Qt Qt |