From 42b749e69753136572ec162df3539c11e0bac174 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 9 May 2020 17:20:35 +1000 Subject: [PATCH] travis: attempt to prioritize our cmake build --- .travis/before_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis/before_install.sh b/.travis/before_install.sh index 3526f518f..8c41527d2 100644 --- a/.travis/before_install.sh +++ b/.travis/before_install.sh @@ -2,6 +2,9 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + # CMake + sudo add-apt-repository ppa:olive-editor/cmake -y + # Qt 5.11 sudo add-apt-repository ppa:beineri/opt-qt-5.11.0-xenial -y @@ -11,9 +14,6 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then # OpenColorIO sudo add-apt-repository ppa:olive-editor/opencolorio -y - # CMake - sudo add-apt-repository ppa:olive-editor/cmake -y - # Update apt sudo apt-get update -qq