mirror of
https://github.com/X11Libre/xf86-video-nv.git
synced 2026-03-24 01:24:21 +00:00
This pipeline builds the driver against the latest Xserver stable release as well as current master. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
16 lines
466 B
Bash
Executable File
16 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. .github/scripts/util.sh
|
|
|
|
mkdir -p $X11_BUILD_DIR
|
|
cd $X11_BUILD_DIR
|
|
|
|
if [ "$X11_OS" = "Linux" ]; then
|
|
build_meson drm https://gitlab.freedesktop.org/mesa/drm libdrm-2.4.121 "" \
|
|
-Domap=enabled
|
|
fi
|
|
build_meson libxcvt https://gitlab.freedesktop.org/xorg/lib/libxcvt libxcvt-0.1.0
|
|
build_ac xorgproto https://gitlab.freedesktop.org/xorg/proto/xorgproto xorgproto-2024.1
|