summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-11 19:02:36 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-11 19:02:36 +0300
commit1192dc5134dc0369853f72c6e07636e06d5da959 (patch)
tree5e781ca1f9dd241ed05bf5d9b8ba9dfb9ea98e02 /.ci
parentSwitch to libcmark (diff)
downloadnheko-1192dc5134dc0369853f72c6e07636e06d5da959.tar.xz
Update CI with cmark
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/install.sh2
-rwxr-xr-x.ci/script.sh4
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