Files
xf86-video-amdgpu/.gitlab-ci.yml
Pierre-Eric Pelloux-Prayer d1c7ab5bac ci: use gfx-ci/ci-deb-repo to get latest libdrm
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
2024-07-12 19:47:55 +02:00

103 lines
2.5 KiB
YAML

# 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'
FDO_DISTRIBUTION_TAG: "2024-07-12-ci-deb-repo"
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:
- ./autogen.sh
- make -j$(nproc) check V=1
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
xserver-21.1:
extends: .default_build
script:
- ./autogen.sh
- make -j$(nproc) check V=1
- make install V=1
- make -j$(nproc) distcheck
variables:
XSERVER_VERSION: "21.1"
xserver-21.1-clang:
extends: .default_build
variables:
CC: clang
XSERVER_VERSION: "21.1"
xserver-1.20:
extends: .default_build
variables:
XSERVER_VERSION: "1.20"
xserver-1.20-clang:
extends: .default_build
variables:
CC: clang
XSERVER_VERSION: "1.20"
xserver-1.18:
extends: .default_build
script:
- ./autogen.sh --disable-glamor
- make -j$(nproc) check V=1
variables:
XSERVER_VERSION: "1.18"
xserver-1.18-clang:
extends: xserver-1.18
variables:
CC: clang
xserver-1.19:
extends: .default_build
variables:
XSERVER_VERSION: "1.19"
xserver-1.19-clang:
extends: xserver-1.19
variables:
CC: clang