-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
374 lines (350 loc) · 8.84 KB
/
.gitlab-ci.yml
File metadata and controls
374 lines (350 loc) · 8.84 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
include:
- project: 'Infrastructure/freedesktop-ci-templates'
ref: '707b49ef'
file:
- 'templates/fedora.yml'
- component: "gitlab.gnome.org/GNOME/citemplates/release-service@master"
inputs:
job-stage: "build"
dist-job-name: "release-build"
stages:
- prepare
- check
- build
- analysis
- docs
- deploy
# Common variables
variables:
FDO_UPSTREAM_REPO: GNOME/gdk-pixbuf
CCACHE_DIR: _ccache
COMMON_MESON_FLAGS: "-Dwerror=true -Dglib:werror=false"
LOADERS_NO_GLYCIN_FLAGS: "-Dpng=enabled -Djpeg=enabled -Dtiff=enabled -Dgif=enabled -Dothers=enabled -Dglycin=disabled"
MESON_TEST_TIMEOUT_MULTIPLIER: 3
workflow:
rules:
# run merge request pipelines
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
# do not run branch pipelines if corresponding merge requests exist...
# (this avoids duplicate pipelines)
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
when: never
# ...but otherwise run branch pipelines
- if: $CI_COMMIT_BRANCH
# run tag pipelines
- if: $CI_COMMIT_TAG
default:
retry:
max: 2
when:
- 'runner_system_failure'
- 'stuck_or_timeout_failure'
- 'scheduler_failure'
- 'api_failure'
interruptible: true
.container.fedora:
variables:
BASE_TAG: '2025-12-12.0'
FDO_DISTRIBUTION_VERSION: 43
FDO_DISTRIBUTION_TAG: "x86_64-${BASE_TAG}"
FDO_DISTRIBUTION_PACKAGES:
ccache
clang
clang-analyzer
clang-tools-extra
gcc
gcc-c++
gettext
gettext-devel
gi-docgen
git
glib2-devel
glycin-devel
gobject-introspection-devel
itstool
jasper-devel
lcov
libasan
libjpeg-turbo-devel
libpng-devel
libtiff-devel
libubsan
libX11-devel
meson
python3
python3-docutils
python3-jinja2
python3-markdown
python3-pip
python3-pygments
python3-setuptools
python3-toml
python3-typogrify
python3-wheel
redhat-rpm-config
shared-mime-info
.distribution.fedora:
extends:
- .fdo.distribution-image@fedora
- .container.fedora
container:fedora:
extends:
- .container.fedora
- .fdo.container-build@fedora@x86_64
# DNS issues can cause this to fail
retry:
max: 2
exit_codes: 137
stage: prepare
.test-runner:
artifacts:
name: "gdk-pixbuf-${CI_COMMIT_REF_NAME}"
when: always
reports:
junit:
- "${CI_PROJECT_DIR}/_build/meson-logs/testlog.junit.xml"
paths:
- "${CI_PROJECT_DIR}/_build/meson-logs"
- "${CI_PROJECT_DIR}/_build/meson-dist"
.dist-runner:
artifacts:
name: "gdk-pixbuf-dist-${CI_COMMIT_REF_NAME}"
when: always
paths:
- "${CI_PROJECT_DIR}/public-dist"
.scan-runner:
artifacts:
name: "gdk-pixbuf-scan-${CI_COMMIT_REF_NAME}"
when: always
paths:
- "${CI_PROJECT_DIR}/_scan_build/meson-logs"
- "${CI_PROJECT_DIR}/_static_scan"
.build-fedora-default:
extends:
- .distribution.fedora
cache:
key: "$CI_JOB_NAME"
paths:
- _ccache/
style-check-diff:
extends:
- .build-fedora-default
needs: ['container:fedora']
stage: check
allow_failure: true
script:
- .gitlab/scripts/run-style-check-diff.sh
fedora-noglycin-x86_64:
extends:
- .test-runner
- .build-fedora-default
stage: build
needs: ["container:fedora"]
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug --default-library=both"
script:
- meson setup ${COMMON_MESON_FLAGS} ${LOADERS_NO_GLYCIN_FLAGS} ${EXTRA_MESON_FLAGS} _build
- meson compile -C _build
- meson test -C _build
fedora-x86_64:
extends:
- .test-runner
- .build-fedora-default
stage: build
needs: ["container:fedora"]
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug --default-library=both"
script:
- meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} _build
- meson compile -C _build
- meson test -C _build
release-build:
extends:
- .dist-runner
- .build-fedora-default
stage: build
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=release"
script:
- mkdir _install
- git config --global --add safe.directory $CI_PROJECT_DIR
- meson setup
--prefix=${CI_PROJECT_DIR}/_install
${COMMON_MESON_FLAGS}
${EXTRA_MESON_FLAGS}
_build
- meson compile -C _build
- meson dist -C _build
- cp -r "_build/meson-dist" "${CI_PROJECT_DIR}/public-dist/"
asan-build-noglycin:
extends:
- .test-runner
- .build-fedora-default
tags: [ asan ]
stage: analysis
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug -Ddocumentation=false -Dintrospection=disabled"
ASAN_OPTIONS: allocator_may_return_null=1
script:
- meson setup
${COMMON_MESON_FLAGS}
${LOADERS_NO_GLYCIN_FLAGS}
${EXTRA_MESON_FLAGS}
-Db_sanitize=address
-Db_lundef=false
_build
- meson compile -C _build
- meson test --no-suite=slow -C _build
asan-build:
extends:
- .test-runner
- .build-fedora-default
tags: [ asan ]
stage: analysis
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug -Ddocumentation=false -Dintrospection=disabled"
ASAN_OPTIONS: allocator_may_return_null=1
script:
- meson setup
${COMMON_MESON_FLAGS}
${EXTRA_MESON_FLAGS}
-Db_sanitize=address
-Db_lundef=false
_build
- meson compile -C _build
- meson test --no-suite=slow -C _build
ubsan-build-noglycin:
extends:
- .test-runner
- .build-fedora-default
tags: [ asan ]
stage: analysis
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug -Ddocumentation=false -Dintrospection=disabled"
script:
- meson setup
${COMMON_MESON_FLAGS}
${LOADERS_NO_GLYCIN_FLAGS}
${EXTRA_MESON_FLAGS}
-Db_sanitize=undefined
-Db_lundef=false
_build
- meson compile -C _build
- meson test --no-suite=slow -C _build
ubsan-build:
extends:
- .test-runner
- .build-fedora-default
tags: [ asan ]
stage: analysis
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug -Ddocumentation=false -Dintrospection=disabled"
script:
- meson setup
${COMMON_MESON_FLAGS}
${EXTRA_MESON_FLAGS}
-Db_sanitize=undefined
-Db_lundef=false
_build
- meson compile -C _build
- meson test --no-suite=slow -C _build
static-scan:
extends:
- .scan-runner
- .build-fedora-default
tags: [ asan ]
stage: analysis
needs: ['container:fedora']
variables:
EXTRA_MESON_FLAGS: "--buildtype=debug -Dintrospection=disabled -Ddocumentation=false"
script:
- CC=clang meson setup
${COMMON_MESON_FLAGS}
${LOADERS_NO_GLYCIN_FLAGS}
${EXTRA_MESON_FLAGS}
_scan_build
- ninja -C _scan_build scan-build
- cp -r _scan_build/meson-logs/scanbuild _static_scan
allow_failure: true
macos-build:
stage: build
needs: []
only:
- branches@GNOME/gdk-pixbuf
except:
- tags
tags:
- macos
variables:
EXTRA_MESON_FLAGS: "-Dintrospection=disabled -Dinstalled_tests=false -Dman=false -Ddocumentation=false"
before_script:
- pip3 install --user meson==1.5
- pip3 install --user ninja
- export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH
script:
- meson setup
${COMMON_MESON_FLAGS}
${LOADERS_NO_GLYCIN_FLAGS}
${EXTRA_MESON_FLAGS}
_build
- meson compile -C _build
artifacts:
when: always
paths:
- "${CI_PROJECT_DIR}/_build/meson-logs"
allow_failure: true
msys2-mingw64-build:
stage: build
needs: []
tags:
- win32-ps
variables:
MSYSTEM: "MINGW64"
CHERE_INVOKING: "yes"
script:
- C:\msys64\usr\bin\pacman --noconfirm -Syyuu
- C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab/ci/test-msys2.sh"
artifacts:
name: "gdk-pixbuf-${env:CI_JOB_NAME}-${env:CI_COMMIT_REF_NAME}"
when: always
paths:
- _build/meson-logs
reference:
extends:
- .build-fedora-default
tags: [ asan ]
needs: ['container:fedora']
stage: docs
variables:
EXTRA_MESON_FLAGS: "-Dbuildtype=release -Dintrospection=enabled -Ddocumentation=true"
script:
- meson setup
${COMMON_MESON_FLAGS}
${LOADERS_NO_GLYCIN_FLAGS}
${EXTRA_MESON_FLAGS}
_build
- meson compile -C _build
- mkdir -p _reference
- mv _build/docs/gdk-pixbuf/ _reference/gdk-pixbuf/
- mv _build/docs/gdk-pixdata/ _reference/gdk-pixdata/
artifacts:
when: on_success
paths:
- _reference
pages:
stage: deploy
needs: ["reference", "static-scan"]
script:
- mv _reference public
- mv _static_scan public/static-scan/
artifacts:
when: on_success
paths:
- public
only:
- master