nheko/.ci/install.sh

61 lines
1.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2018-01-13 13:59:48 +01:00
set -ex
2018-01-13 13:59:48 +01:00
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
2018-01-13 13:59:48 +01:00
brew update
# uninstall packages, that would get upgraded by upgrading cmake (and we don't need)
brew uninstall --force cgal node sfcgal postgis
2019-02-04 03:46:41 +01:00
brew install qt5 lmdb clang-format ninja libsodium cmark
brew upgrade boost cmake icu4c || true
2018-01-13 13:59:48 +01:00
brew tap nlohmann/json
2019-02-25 03:37:11 +01:00
brew install --with-cmake nlohmann_json
2018-04-28 16:54:39 +02:00
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python get-pip.py
sudo pip install --upgrade pip
sudo pip install dmgbuild
2018-04-28 16:28:26 +02:00
2018-01-13 13:59:48 +01:00
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
fi
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
2018-01-13 13:59:48 +01:00
if [ -z "$QT_VERSION" ]; then
2018-01-29 01:21:19 +01:00
QT_VERSION="592"
2018-04-28 20:34:40 +02:00
QT_PKG="59"
2018-01-13 13:59:48 +01:00
fi
wget https://cmake.org/files/v3.15/cmake-3.15.5-Linux-x86_64.sh
sudo sh cmake-3.15.5-Linux-x86_64.sh --skip-license --prefix=/usr/local
2018-06-22 22:54:35 +02:00
2018-09-18 16:03:05 +02:00
mkdir -p build-libsodium
( cd build-libsodium
curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.17.tar.gz -o libsodium-1.0.17.tar.gz
tar xfz libsodium-1.0.17.tar.gz
cd libsodium-1.0.17/
./configure && make && sudo make install )
2018-09-18 16:03:05 +02:00
2019-02-24 23:29:51 +01:00
sudo add-apt-repository -y ppa:beineri/opt-qt${QT_VERSION}-trusty
2019-05-01 16:51:13 +02:00
# needed for git-lfs, otherwise the follow apt update fails.
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6B05F25D762E3157
# needed for mongodb repository: https://github.com/travis-ci/travis-ci/issues/9037
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6
sudo apt update -qq
sudo apt install -qq -y \
2019-02-24 23:29:51 +01:00
qt${QT_PKG}base \
qt${QT_PKG}tools \
qt${QT_PKG}svg \
qt${QT_PKG}multimedia \
2019-09-03 02:19:54 +02:00
qt${QT_PKG}quickcontrols2 \
2019-10-06 12:59:22 +02:00
qt${QT_PKG}graphicaleffects \
2019-02-24 23:03:26 +01:00
liblmdb-dev
fi