Fix pip/SSL issue on travis

This commit is contained in:
Konstantinos Sideris 2018-04-28 17:54:39 +03:00
parent ca80fb24ab
commit cdba854954
1 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,11 @@ if [ $TRAVIS_OS_NAME == osx ]; then
brew update
brew install qt5 lmdb clang-format ninja
pip install dmgbuild
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
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
fi