summary refs log tree commit diff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-11-08 19:45:21 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-11-08 19:45:21 +0100
commitb27b7c9482ef62e1828f9bd4f804ba4a8bf2b074 (patch)
tree8a8fc23b09c43735ee3459f7b158876dc01ef55d /.gitlab-ci.yml
parentUpdate translations (diff)
downloadnheko-b27b7c9482ef62e1828f9bd4f804ba4a8bf2b074.tar.xz
Remove appimage
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml56
1 files changed, 0 insertions, 56 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1012c690..2f0ec910 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -177,59 +177,3 @@ linting:
     - make lint
     - make license
 
-appimage-amd64:
-  stage: build
-  image: appimagecrafters/appimage-builder
-  tags: [docker]
-  variables:
-    QT_PKG: 515
-  before_script:
-    # app build requirements
-    - apt-get update && apt-get install -y software-properties-common
-    - add-apt-repository ppa:beineri/opt-qt-5.15.2-bionic -y
-    - apt-get update
-    - apt-get install -y git wget curl
-
-    # update appimage-builder (optional)
-    - pip3 install --upgrade git+https://github.com/AppImageCrafters/appimage-builder.git
-
-    - apt-get update && apt-get -y install --no-install-recommends g++-7 build-essential ninja-build qt${QT_PKG}{base,declarative,tools,multimedia,script,quickcontrols2,svg} liblmdb-dev libssl-dev git ninja-build qt5keychain-dev libgtest-dev ccache libevent-dev libcurl4-openssl-dev libgl1-mesa-dev 
-    - wget https://github.com/Kitware/CMake/releases/download/v3.19.0/cmake-3.19.0-Linux-x86_64.sh && sh cmake-3.19.0-Linux-x86_64.sh  --skip-license  --prefix=/usr/local
-    - /usr/sbin/update-ccache-symlinks
-  script:
-    - export PATH="/usr/local/bin/:/usr/lib/ccache:${PATH}"
-    - export CMAKE_BUILD_PARALLEL_LEVEL=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l)
-    - . "/opt/qt${QT_PKG}/bin/qt${QT_PKG}-env.sh" || true
-    - cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -GNinja
-      -DHUNTER_ROOT=".hunter"
-      -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF
-      -DHUNTER_CONFIGURATION_TYPES=Release
-      -DUSE_BUNDLED_SPDLOG=ON
-      -DUSE_BUNDLED_OLM=ON
-      -DUSE_BUNDLED_GTEST=OFF
-      -DUSE_BUNDLED_CMARK=ON
-      -DUSE_BUNDLED_JSON=ON
-      -DUSE_BUNDLED_OPENSSL=OFF
-      -DUSE_BUNDLED_MTXCLIENT=ON
-      -DUSE_BUNDLED_LMDB=OFF
-      -DUSE_BUNDLED_LMDBXX=ON
-      -DUSE_BUNDLED_QTKEYCHAIN=OFF
-      -DUSE_BUNDLED_LIBEVENT=OFF
-      -DUSE_BUNDLED_LIBCURL=OFF
-      -DUSE_BUNDLED_COEURL=ON
-    - DESTDIR=`pwd`/AppDir ninja -C build install/local
-    - DESTDIR=`pwd`/AppDir ninja -C build _deps/cmark-build/src/install
-    - mkdir -p AppDir/usr/lib/x86_64-linux-gnu AppDir/lib/x86_64-linux-gnu
-    - appimage-builder --skip-test
-  after_script:
-    - bash ./.ci/upload-nightly-gitlab.sh nheko-latest-x86_64.AppImage
-  artifacts:
-    paths:
-      - 'nheko-latest-x86_64.AppImage'
-    expire_in: 1 week
-    expose_as: 'appimage-amd64'
-  cache:
-    key: "$CI_JOB_NAME"
-    paths:
-      - .hunter/
-      - .ccache