-
Notifications
You must be signed in to change notification settings - Fork 31
/
.gitlab-ci.yml
46 lines (42 loc) · 1.18 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
include:
- remote: 'https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/master/templates/fedora.yml'
stages:
- "build docker"
- build
.fedora image:
variables:
###
# IMPORTANT
# These are the version tags for the docker images the CI runs against.
# If you are hacking on them or need a them to rebuild, its enough
# to change any part of the string of the image you want.
###
FDO_DISTRIBUTION_TAG: '2022-04-29.5'
FDO_DISTRIBUTION_VERSION: '35'
FDO_DISTRIBUTION_PACKAGES: >
meson ninja-build gcc g++ git gettext glib2-devel libjpeg-turbo-devel
libpng-devel json-glib-devel lcms2-devel
FDO_UPSTREAM_REPO: gnome/gegl
fedora image:
stage: "build docker"
extends:
- .fedora image
- .fdo.container-build@fedora
fedora-x86_64:
extends:
- .fedora image
- .fdo.distribution-image@fedora
stage: build
needs: ["fedora image"]
script:
- meson --buildtype debug
--fatal-meson-warnings
--default-library=both
_build
- ninja -C _build
artifacts:
name: "gegl-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
when: always
expire_in: 1 week
paths:
- "_build/meson-logs"