-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitlab-ci.yml
141 lines (123 loc) · 2.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# default KDE build env
include:
- project: sysadmin/ci-utilities
file:
- /gitlab-templates/linux.yml
- /gitlab-templates/freebsd.yml
- /gitlab-templates/windows.yml
- /gitlab-templates/linux-qt6.yml
- /gitlab-templates/freebsd-qt6.yml
- /gitlab-templates/windows-qt6.yml
# https://bugs.kde.org/show_bug.cgi?id=456002
image: opensuse/leap:15.5
# custom builds
.unix-host-build:
stage: build
interruptible: true
variables:
ci_parallel: "16"
before_script:
- ./tools/ci-install.sh
script:
- runuser -u user ./tools/ci-build.sh
.unix-build:
extends: .unix-host-build
variables:
ci_webserver: "yes"
.unix-leap-build:
extends: .unix-build
image: rhabacker/suse_leap_kf5_qt515
distro kf6 tumbleweed:
extends: .unix-build
#when: manual
image: rhabacker/suse_tumbleweed_kf6_qt68
#only:
# - merge_requests
variables:
ci_variant: "kf6"
distro kf5 tumbleweed:
extends: .unix-build
#when: manual
image: opensuse/tumbleweed
#only:
# - merge_requests
variables:
ci_variant: "kf5"
distro kf5 tumbleweed mingw32:
extends: .unix-host-build
when: manual
image: opensuse/tumbleweed
#only:
# - merge_requests
variables:
ci_variant: "kf5"
ci_host: "mingw32"
distro kf5 tumbleweed mingw64:
extends: .unix-host-build
when: manual
image: opensuse/tumbleweed
#only:
# - merge_requests
variables:
ci_variant: "kf5"
ci_host: "mingw64"
distro kf5 leap:
extends: .unix-leap-build
#when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf5"
distro kf5 leap mingw32:
extends: .unix-leap-build
when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf5"
ci_host: "mingw32"
distro kf5 leap mingw64:
extends: .unix-leap-build
when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf5"
ci_host: "mingw64"
distro kf5 leap webengine:
extends: .unix-leap-build
# when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf5-webengine"
distro kf5 leap webkit:
extends: .unix-leap-build
# when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf5-webkit"
distro kf4 leap:
extends: .unix-build
when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf4"
distro kf4 leap mingw32:
extends: .unix-host-build
when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf4"
ci_host: "mingw32"
distro kf4 leap mingw64:
extends: .unix-host-build
when: manual
#only:
# - merge_requests
variables:
ci_variant: "kf4"
ci_host: "mingw64"