diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-10-06 12:36:13 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-10-07 22:58:53 +0200 |
commit | cade911a031e48750b7e64ec3b9cb4001c1de820 (patch) | |
tree | 642efbcaf4555812af27d351426cd7889fa9b0a2 /.ci | |
parent | Merge pull request #93 from rnhmjoj/pr (diff) | |
download | nheko-cade911a031e48750b7e64ec3b9cb4001c1de820.tar.xz |
Try to fix slow macos build
Try to prevent node upgrade via homebrew
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/install.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index d8dd67f2..c1f42357 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -4,6 +4,10 @@ set -ex if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update + + # uninstall packages, that would get upgraded by upgrading cmake (and we don't need) + brew uninstall --force cgal node sfcgal postgis + brew install qt5 lmdb clang-format ninja libsodium cmark brew upgrade boost cmake icu4c || true |