Make sure boost and icu4c are installed in macos

azure-pipelines
Joseph Donofry 6 years ago
parent c9566369e8
commit a4e7e24810
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
  1. 5
      .ci/install.sh

@ -5,6 +5,11 @@ set -ex
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew update
brew install qt5 lmdb clang-format ninja libsodium cmark
# probably should update this to check if these are actually installed or not
# but this installs boost, cmake, and icu4c if they aren't installed already
# and upgrades them if they are
brew install boost cmake icu4c || true
brew upgrade boost cmake icu4c || true
brew tap nlohmann/json

Loading…
Cancel
Save