Navigation Menu

Skip to content

Commit

Permalink
Travis CI: trying to use Docker with Ubuntu 16.04 LTS (#1395).
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Aug 11, 2017
1 parent 72c2a87 commit ea95d44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Expand Up @@ -20,12 +20,12 @@ branches:

install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
sudo docker pull ubuntu:16.04
&& sudo docker run ubuntu apt-add-repository -y ppa:ubuntu-toolchain-r/test
&& sudo docker run ubuntu apt-add-repository -y ppa:beineri/opt-qt562-xenial
&& sudo docker run ubuntu apt -qq update
&& sudo docker run ubuntu apt -qq install g++-5 libgl1-mesa-dev libglu1-mesa-dev ninja-build
&& sudo docker run ubuntu apt -qq install qt56location qt56multimedia qt56sensors qt56svg qt56tools qt56webchannel
docker pull ubuntu:16.04
&& docker run ubuntu:16.04 apt-add-repository -y ppa:ubuntu-toolchain-r/test
&& docker run ubuntu:16.04 apt-add-repository -y ppa:beineri/opt-qt562-xenial
&& docker run ubuntu:16.04 apt -qq update
&& docker run ubuntu:16.04 apt -qq install g++-5 libgl1-mesa-dev libglu1-mesa-dev ninja-build
&& docker run ubuntu:16.04 apt -qq install qt56location qt56multimedia qt56sensors qt56svg qt56tools qt56webchannel
;
else
brew update
Expand Down

0 comments on commit ea95d44

Please sign in to comment.