diff options
author | Zhymabek Roman <61125068+ZhymabekRoman@users.noreply.github.com> | 2022-10-21 09:43:21 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 09:43:21 +0600 |
commit | 7747469825f3926c73389c7ccff087a5c3505b46 (patch) | |
tree | 8f43baff4b8f1f5d447de43146f18a4d99c464f1 | |
parent | Add AppImage recipe file (diff) | |
download | nheko-7747469825f3926c73389c7ccff087a5c3505b46.tar.xz |
Disable bundle some packages in AppImage
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 39bf927b..7b42204b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -222,6 +222,7 @@ appimage-amd64: stage: build image: ubuntu:22.04 tags: [docker] + allow_failure: true before_script: # Installing the packages needed to download and install third-party tools - apt-get update && apt-get install -y software-properties-common git wget curl @@ -254,18 +255,18 @@ appimage-amd64: -DMAN=OFF -DCI_BUILD=ON -DHUNTER_CONFIGURATION_TYPES=Release - -DUSE_BUNDLED_SPDLOG=ON + -DUSE_BUNDLED_SPDLOG=OFF -DUSE_BUNDLED_OLM=ON -DUSE_BUNDLED_GTEST=OFF -DUSE_BUNDLED_CMARK=ON -DUSE_BUNDLED_JSON=ON - -DUSE_BUNDLED_OPENSSL=ON + -DUSE_BUNDLED_OPENSSL=OFF -DUSE_BUNDLED_MTXCLIENT=ON -DUSE_BUNDLED_LMDB=OFF -DUSE_BUNDLED_LMDBXX=ON -DUSE_BUNDLED_QTKEYCHAIN=OFF - -DUSE_BUNDLED_LIBEVENT=ON - -DUSE_BUNDLED_LIBCURL=ON + -DUSE_BUNDLED_LIBEVENT=OFF + -DUSE_BUNDLED_LIBCURL=OFF -DUSE_BUNDLED_COEURL=ON -DJSON_ImplicitConversions=OFF - DESTDIR=`pwd`/AppDir ninja -C build install/local |