2019-04-24 01:55:05 +02:00
|
|
|
#!/usr/bin/env sh
|
2018-01-13 13:59:48 +01:00
|
|
|
|
2019-05-01 19:01:48 +02:00
|
|
|
set -ex
|
2018-01-13 13:59:48 +01:00
|
|
|
|
2019-04-24 01:55:05 +02:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2019-02-24 22:42:37 +01:00
|
|
|
brew tap nlohmann/json
|
2019-02-25 03:37:11 +01:00
|
|
|
brew install --with-cmake nlohmann_json
|
2019-02-24 22:42:37 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2019-04-24 01:55:05 +02:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
2019-12-14 17:08:36 +01:00
|
|
|
sudo update-alternatives --install /usr/bin/gcc gcc "/usr/bin/${CC}" 10
|
|
|
|
sudo update-alternatives --install /usr/bin/g++ g++ "/usr/bin/${CXX}" 10
|
2018-01-13 13:59:48 +01:00
|
|
|
|
2019-12-14 17:08:36 +01:00
|
|
|
sudo update-alternatives --set gcc "/usr/bin/${CC}"
|
|
|
|
sudo update-alternatives --set g++ "/usr/bin/${CXX}"
|
2018-01-13 13:59:48 +01:00
|
|
|
|
2019-12-03 17:25:22 +01:00
|
|
|
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
|
2019-04-24 01:55:05 +02:00
|
|
|
( cd build-libsodium
|
2019-12-13 00:19:00 +01:00
|
|
|
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 )
|
2019-04-24 01:55:05 +02:00
|
|
|
fi
|