Kaidan/.gitlab-ci.yml

59 lines
1.0 KiB
YAML
Raw Permalink Normal View History

stages:
- test
- deploy
clazy:
stage: test
image: kaidan/debian-unstable
variables:
CMAKE_CXX_COMPILER: clazy
script: utils/travis/build.sh
allow_failure: true
qmllint:
stage: test
image: kaidan/neon-bionic
script: qmllint $(find . -name "*.qml")
variables:
QT_SELECT: 5
build:
stage: test
image: kaidan/debian-unstable
script: utils/travis/build.sh
linux-appimage:
stage: deploy
image: kaidan/ubuntu-xenial
script: utils/build-linux-appimage.sh
variables:
QXMPP_BUILD: /usr
artifacts:
paths:
- "*.AppImage"
- "*.AppImage.zsync"
expire_in: 1 week
only:
- network/kaidan
2019-05-03 11:15:18 -07:00
android:
stage: deploy
2020-03-13 14:00:35 -07:00
image: kdeorg/android-sdk
2019-05-03 11:15:18 -07:00
script:
2019-10-19 05:54:33 -07:00
- utils/build-android-docker.sh
2019-05-03 11:15:18 -07:00
variables:
KF5_VERSION: master
allow_failure: true
2019-05-03 11:15:18 -07:00
artifacts:
paths:
2020-03-17 04:30:49 -07:00
- "kaidan_arm.apk"
- "kaidan_arm64.apk"
2019-05-03 11:15:18 -07:00
expire_in: 1 week
only:
- network/kaidan
2019-05-03 11:15:18 -07:00
2018-09-25 07:59:55 -07:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
BUILD_SYSTEM: cmake
BUILD_TYPE: Release