From 1b8c5e85ed394fc6fb5e43b3abc0aee55c663b1e Mon Sep 17 00:00:00 2001 From: Joe <rubberduckie3554@gmail.com> Date: Sun, 24 Feb 2019 21:39:04 -0500 Subject: [PATCH] Attempt to fix mac CI issues --- .ci/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/install.sh b/.ci/install.sh index 726ee78f3..1cb1657dc 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -7,5 +7,7 @@ if [ $TRAVIS_OS_NAME == osx ]; then brew upgrade boost || true brew install libsodium clang-format brew tap nlohmann/json - brew install nlohmann_json + # the nlohmann install seems to make travis angry + # because of the number of log messages + brew install --with-cmake nlohmann_json > /dev/null fi -- GitLab