mirror of
https://github.com/X11Libre/xf86-video-amdgpu.git
synced 2026-03-24 01:24:31 +00:00
Repository was moved there from wayland/ci-templates, and let's update to the most recent version.. No real functional changes, we're just making use of the various CI template bits and bobs now, specifically the FDO_* variables and the .fdo.container-build and .fdo.distribution-image templates. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
113 lines
2.5 KiB
YAML
113 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: 59de540b620c45739871d1a073d76d5521989d11
|
|
file: '/templates/debian.yml'
|
|
|
|
stages:
|
|
- docker-image
|
|
- build
|
|
|
|
.debian-testing:
|
|
variables:
|
|
FDO_DISTRIBUTION_VERSION: testing-slim
|
|
FDO_DISTRIBUTION_EXEC: 'bash .gitlab-ci/debian-install.sh'
|
|
FDO_DISTRIBUTION_TAG: "2019-08-02"
|
|
|
|
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-1.20:
|
|
extends: .default_build
|
|
script:
|
|
- ./autogen.sh
|
|
- make -j$(nproc) check V=1
|
|
- make install V=1
|
|
- make -j$(nproc) distcheck
|
|
variables:
|
|
XSERVER_VERSION: "1.20"
|
|
|
|
xserver-1.20-clang:
|
|
extends: .default_build
|
|
variables:
|
|
CC: clang
|
|
XSERVER_VERSION: "1.20"
|
|
|
|
xserver-1.13:
|
|
extends: .default_build
|
|
script:
|
|
- ./autogen.sh --disable-glamor
|
|
- make -j$(nproc) check V=1
|
|
variables:
|
|
XSERVER_VERSION: "1.13"
|
|
|
|
xserver-1.14:
|
|
extends: xserver-1.13
|
|
variables:
|
|
XSERVER_VERSION: "1.14"
|
|
|
|
xserver-1.15:
|
|
extends: xserver-1.14
|
|
variables:
|
|
XSERVER_VERSION: "1.15"
|
|
|
|
xserver-1.16:
|
|
extends: .default_build
|
|
variables:
|
|
XSERVER_VERSION: "1.16"
|
|
|
|
xserver-1.17:
|
|
extends: .default_build
|
|
variables:
|
|
XSERVER_VERSION: "1.17"
|
|
|
|
xserver-1.18:
|
|
extends: .default_build
|
|
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
|