ci: workaround for building xf86-video-intel via autotools

This driver's meson build scripts are currently broken, but autotools
still works fine. So add a little workaround for forcing it to be built
via autotools, even if meson.build file is there.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1778>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-10 15:00:16 +01:00
parent 9b3b938ede
commit d4f60b5462

View File

@ -276,7 +276,7 @@ xf86-driver-build-test:
- git clone "$REPO" "$DRIVER" - git clone "$REPO" "$DRIVER"
- git -C "$DRIVER" checkout "$SHA" - git -C "$DRIVER" checkout "$SHA"
- | - |
if [[ -e "$DRIVER/meson.build" ]]; then if [[ -e "$DRIVER/meson.build" ]] && [[ "$DRIVER" != "xf86-video-intel" ]]; then
.gitlab-ci/meson-build.sh -C "$DRIVER" --skip-test .gitlab-ci/meson-build.sh -C "$DRIVER" --skip-test
else else
pushd "$DRIVER" || exit 1 pushd "$DRIVER" || exit 1