nheko/.ci/install.sh

33 lines
667 B
Bash
Raw Normal View History

2018-01-13 13:59:48 +01:00
#!/usr/bin/env bash
set -ex
if [ $TRAVIS_OS_NAME == osx ]; then
brew update
brew install qt5 lmdb clang-format ninja
2018-04-28 16:28:26 +02:00
pip install dmgbuild
2018-01-13 13:59:48 +01:00
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
fi
if [ $TRAVIS_OS_NAME == linux ]; then
if [ -z "$QT_VERSION" ]; then
2018-01-29 01:21:19 +01:00
QT_VERSION="592"
2018-01-13 13:59:48 +01:00
fi
export QT_PKG=${QT_VERSION:0:2}
sudo add-apt-repository -y ppa:beineri/opt-qt${QT_VERSION}-trusty
sudo add-apt-repository -y ppa:george-edison55/cmake-3.x
sudo apt-get update -qq
sudo apt-get install -qq -y \
qt${QT_PKG}base \
qt${QT_PKG}tools \
qt${QT_PKG}multimedia \
cmake \
liblmdb-dev
fi