rssguard/.travis-before-install.sh

12 lines
227 B
Bash
Raw Normal View History

2016-08-24 10:37:48 +02:00
#!/bin/sh
2016-08-24 11:04:33 +02:00
if test "$TRAVIS_OS_NAME" = "osx"; then
2016-08-24 10:37:48 +02:00
# Mac OS X.
brew update
2016-08-24 10:47:51 +02:00
brew install qt5
2016-08-24 10:37:48 +02:00
else
# Linux.
2016-08-24 11:04:33 +02:00
sudo apt-get update
sudo apt-get -y install qt57tools qt57base qt57webengine
2016-08-24 11:14:46 +02:00
. /opt/qt57/bin/qt57-env.sh
2016-08-24 10:06:45 +02:00
fi