未验证 提交 381960a7 编写于 作者: J Joel Bethke 提交者: GitHub

Merge pull request #3100 from PatTheMav/macos-azure-pipelines-fix

CI: Quick fix to cover pre-installed Homebrew dependencies for macOS
......@@ -28,7 +28,14 @@ sudo installer -pkg ./Packages.pkg -target /
brew update
#Base OBS Deps and ccache
brew install jack speexdsp ccache mbedtls freetype fdk-aac
for DEPENDENCY in jack speexdsp ccache mbedtls freetype fdk-aac; do
if [ ! -d "$(brew --cellar)/${DEPENDENCY}" ]; then
brew install $DEPENDENCY
else
brew upgrade $DEPENDENCY
fi
done
brew install https://gist.githubusercontent.com/DDRBoxman/9c7a2b08933166f4b61ed9a44b242609/raw/ef4de6c587c6bd7f50210eccd5bd51ff08e6de13/qt.rb
if [ -d "$(brew --cellar)/swig" ]; then
brew unlink swig
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册