rssguard/.travis-before-install.sh

12 lines
232 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:12:25 +02:00
source /opt/qt57/bin/qt57-env.sh
2016-08-24 10:06:45 +02:00
fi