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-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
|
2019-12-14 19:08:36 +03: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 15:59:48 +03:00
|
|
|
|
2019-12-14 19:08:36 +03:00
|
|
|
sudo update-alternatives --set gcc "/usr/bin/${CC}"
|
|
|
|
sudo update-alternatives --set g++ "/usr/bin/${CXX}"
|
2018-01-13 15:59:48 +03:00
|
|
|
|
2019-12-03 19:25:22 +03: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
|
2019-04-24 02:55:05 +03:00
|
|
|
fi
|