2019-04-24 02:55:05 +03:00
|
|
|
#!/usr/bin/env sh
|
2018-01-13 15:59:48 +03:00
|
|
|
|
2019-05-01 20:01:48 +03:00
|
|
|
set -ex
|
2018-01-13 15:59:48 +03:00
|
|
|
|
2019-04-24 02:55:05 +03:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2018-01-13 15:59:48 +03:00
|
|
|
brew update
|
2019-05-18 06:47:53 +03:00
|
|
|
brew install qt5 lmdb clang-format ninja libsodium cmark autoconf automake libtool pkg-config || true
|
2019-05-18 05:06:46 +03:00
|
|
|
|
|
|
|
# probably should update this to check if these are actually installed or not
|
|
|
|
# but this installs boost, cmake, and icu4c if they aren't installed already
|
|
|
|
# and upgrades them if they are
|
|
|
|
brew install boost cmake icu4c || true
|
2019-02-04 05:46:41 +03:00
|
|
|
brew upgrade boost cmake icu4c || true
|
2018-01-13 15:59:48 +03:00
|
|
|
|
2019-02-25 00:42:37 +03:00
|
|
|
brew tap nlohmann/json
|
2019-02-25 05:37:11 +03:00
|
|
|
brew install --with-cmake nlohmann_json
|
2019-02-25 00:42:37 +03:00
|
|
|
|
2018-04-28 17:54:39 +03: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 17:28:26 +03:00
|
|
|
|
2018-01-13 15:59:48 +03:00
|
|
|
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2019-04-24 02:55:05 +03:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
2018-01-13 15:59:48 +03:00
|
|
|
|
|
|
|
if [ -z "$QT_VERSION" ]; then
|
2018-01-29 03:21:19 +03:00
|
|
|
QT_VERSION="592"
|
2018-04-28 21:34:40 +03:00
|
|
|
QT_PKG="59"
|
2018-01-13 15:59:48 +03:00
|
|
|
fi
|
|
|
|
|
2018-09-08 23:37:24 +03:00
|
|
|
wget https://cmake.org/files/v3.12/cmake-3.12.2-Linux-x86_64.sh
|
|
|
|
sudo sh cmake-3.12.2-Linux-x86_64.sh --skip-license --prefix=/usr/local
|
2018-06-22 23:54:35 +03:00
|
|
|
|
2018-09-18 17:03:05 +03:00
|
|
|
mkdir -p build-libsodium
|
2019-04-24 02:55:05 +03:00
|
|
|
( cd build-libsodium
|
|
|
|
curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16.tar.gz -o libsodium-1.0.16.tar.gz
|
|
|
|
tar xfz libsodium-1.0.16.tar.gz
|
|
|
|
cd libsodium-1.0.16/
|
|
|
|
./configure && make && make check && sudo make install )
|
2018-09-18 17:03:05 +03:00
|
|
|
|
2019-05-18 04:45:14 +03:00
|
|
|
UBUNTU_RELEASE=$(lsb_release -sc)
|
2019-05-18 04:37:48 +03:00
|
|
|
|
2019-05-18 04:51:10 +03:00
|
|
|
if [ "$UBUNTU_RELEASE" = "trusty" ]; then
|
2019-05-18 04:37:48 +03:00
|
|
|
curl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
2019-05-18 05:19:36 +03:00
|
|
|
sudo apt-add-repository -y "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-5.0 main"
|
2019-05-18 04:37:48 +03:00
|
|
|
|
|
|
|
sudo apt-get update -qq
|
2019-05-18 05:47:47 +03:00
|
|
|
sudo apt-get install -qq -y clang
|
2019-05-18 04:37:48 +03:00
|
|
|
|
|
|
|
sudo add-apt-repository -y ppa:beineri/opt-qt${QT_VERSION}-trusty
|
2019-05-18 05:19:36 +03:00
|
|
|
|
2019-05-18 04:51:10 +03:00
|
|
|
elif [ "$UBUNTU_RELEASE" = "xenial" ]; then
|
2019-05-18 04:37:48 +03:00
|
|
|
curl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
2019-05-18 05:19:36 +03:00
|
|
|
sudo apt-add-repository -y "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-6.0 main"
|
2019-05-18 04:37:48 +03:00
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qq -y clang-6.0
|
2019-05-18 05:19:36 +03:00
|
|
|
sudo add-apt-repository -y ppa:beineri/opt-qt-5.11.1-xenial
|
2019-05-18 04:37:48 +03:00
|
|
|
fi
|
2019-05-18 05:19:36 +03:00
|
|
|
|
|
|
|
# needed for git-lfs, otherwise the follow apt update fails.
|
|
|
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6B05F25D762E3157
|
2019-05-10 02:23:20 +03:00
|
|
|
# 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
|
|
|
|
|
2019-05-18 05:19:36 +03:00
|
|
|
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2019-05-18 04:17:18 +03:00
|
|
|
|
2019-04-24 02:55:05 +03:00
|
|
|
sudo apt update -qq
|
|
|
|
sudo apt install -qq -y \
|
2019-05-18 04:17:18 +03:00
|
|
|
ninja-build \
|
2019-02-25 01:29:51 +03:00
|
|
|
qt${QT_PKG}base \
|
|
|
|
qt${QT_PKG}tools \
|
|
|
|
qt${QT_PKG}svg \
|
|
|
|
qt${QT_PKG}multimedia \
|
2019-02-25 01:03:26 +03:00
|
|
|
liblmdb-dev
|
2019-04-24 02:55:05 +03:00
|
|
|
fi
|