-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitlab-ci.yml
58 lines (52 loc) · 1 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
android:
stage: deploy
image: kdeorg/android-sdk
script:
- utils/build-android-docker.sh
variables:
KF5_VERSION: master
allow_failure: true
artifacts:
paths:
- "kaidan_arm.apk"
- "kaidan_arm64.apk"
expire_in: 1 week
only:
- network/kaidan
variables:
GIT_SUBMODULE_STRATEGY: recursive
BUILD_SYSTEM: cmake
BUILD_TYPE: Release