From 211285e28b00cbae9c986a29f9e1165dd4c8c177 Mon Sep 17 00:00:00 2001 From: Black Hat Date: Mon, 13 Jan 2020 14:59:05 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb3d4fa65..277bc0152 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,6 @@ build-appimage: stage: build script: - git clone https://gitlab.matrix.org/matrix-org/olm.git && cd olm - - git checkout tags/0.29.0 - cmake . -Bbuild -LA -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=install -DBUILD_SHARED_LIBS=NO - cmake --build build --target install --parallel $(nproc) - cd .. @@ -20,6 +19,7 @@ build-appimage: - sudo cmake --build build --target install - cd .. - git clone https://github.com/commonmark/cmark.git && cd cmark + - git checkout tags/0.29.0 - cmake . -Bbuild -LA -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=install -DCMARK_SHARED=ON -DCMARK_STATIC=ON -DCMARK_TESTS=OFF - cmake --build build --target install --parallel $(nproc) - cd ..