forked from kreciorek/xorglatest-ps4patched
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
68 lines (60 loc) · 1.89 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
68 lines (60 loc) · 1.89 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
# FDO_DISTRIBUTION_TAG is the tag of the docker image used for the build
# jobs. If the image doesn't exist yet, the docker-image stage generates it
# or copies it from upstream (this is all handled by the templates).
#
# In order to generate a new image, one should generally change the tag.
# While removing the image from the registry would also work, that's not
# recommended except for ephemeral images during development: Replacing an
# image after a significant amount of time might pull in newer versions of
# gcc/clang or other packages, which might break the build with older commits
# using the same tag.
#
variables:
FDO_UPSTREAM_REPO: xorg/driver/xf86-video-amdgpu
include:
- project: 'freedesktop/ci-templates'
ref: 9568e38927f9e9c48d4f586f84a071c3a4bdcd39
file: '/templates/debian.yml'
- template: Security/SAST.gitlab-ci.yml
stages:
- docker-image
- build
- test
.debian-testing:
variables:
FDO_DISTRIBUTION_VERSION: bookworm-slim
FDO_DISTRIBUTION_EXEC: 'bash .gitlab-ci/debian-install.sh'
FDO_DISTRIBUTION_PACKAGES: 'ca-certificates meson'
FDO_DISTRIBUTION_TAG: "2025-06-25"
PKG_REPO_REV: "bca9635d"
container-build:
extends:
- .debian-testing
- .fdo.container-build@debian
stage: docker-image
# The default build instructions
.default_build:
extends:
- .debian-testing
- .fdo.distribution-image@debian
stage: build
script:
- meson build
- ninja -C build install
variables:
CFLAGS: "-pipe -g -O2 -Werror"
ACLOCAL_PATH: /usr/local/xserver-$XSERVER_VERSION/share/aclocal
PKG_CONFIG_PATH: /usr/local/xserver-$XSERVER_VERSION/lib/pkgconfig
linux:
extends: .default_build
parallel:
matrix:
- XSERVER_VERSION: ["1.18", "1.19", "1.20", "21.1"]
linux-clang:
extends: linux
variables:
CC: clang
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- if: $CI_PIPELINE_SOURCE == 'push'