`qt@5.7` is no longer available: https://github.com/Homebrew/homebrew-core/pull/23165#issuecomment-362270835
9 lines
271 B
Bash
9 lines
271 B
Bash
#!/bin/bash
|
|
|
|
if [[ $TRAVIS_OS_NAME == "osx" ]] ; then
|
|
brew update
|
|
brew install ccache clang-format protobuf qt@5.5
|
|
fi
|
|
if [[ $TRAVIS_OS_NAME == "linux" ]] ; then
|
|
echo Skipping... packages are installed with the Travis apt addon for sudo disabled container builds
|
|
fi
|