diff options
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/install.sh | 2 | ||||
-rwxr-xr-x | .ci/script.sh | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index ed25fcf2..6019e0a2 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -4,7 +4,7 @@ set -ex if [ $TRAVIS_OS_NAME == osx ]; then brew update - brew install qt5 lmdb clang-format ninja libsodium + brew install qt5 lmdb clang-format ninja libsodium cmark brew upgrade boost cmake curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py diff --git a/.ci/script.sh b/.ci/script.sh index 69433dba..622bda9b 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -22,7 +22,9 @@ if [ $TRAVIS_OS_NAME == osx ]; then fi # Build & install dependencies -cmake -GNinja -Hdeps -B.deps -DUSE_BUNDLED_BOOST=${USE_BUNDLED_BOOST} +cmake -GNinja -Hdeps -B.deps \ + -DUSE_BUNDLED_BOOST=${USE_BUNDLED_BOOST} \ + -DUSE_BUNDLED_CMARK=${USE_BUNDLED_CMARK} cmake --build .deps # Build nheko |