mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
.github: switch dependencies to our new mirrors
Our new automatic mirrors have a special prefix, so we need to fixup the URLs. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
adc2653824
commit
c937804d0e
14
.github/scripts/install-prereq.sh
vendored
14
.github/scripts/install-prereq.sh
vendored
@@ -7,19 +7,19 @@ set -e
|
||||
mkdir -p $X11_BUILD_DIR
|
||||
cd $X11_BUILD_DIR
|
||||
|
||||
build_meson rendercheck https://github.com/X11Libre/rendercheck rendercheck-1.6
|
||||
build_meson rendercheck $(fdo_mirror rendercheck) rendercheck-1.6
|
||||
if [ "$X11_OS" = "Linux" ]; then
|
||||
build_meson drm https://github.com/X11Libre/drm libdrm-2.4.121 -Domap=enabled
|
||||
build_meson drm $(fdo_mirror drm) libdrm-2.4.121 -Domap=enabled
|
||||
fi
|
||||
build_meson libxcvt https://github.com/X11Libre/libxcvt libxcvt-0.1.0
|
||||
build_ac xorgproto https://github.com/X11Libre/xorgproto xorgproto-2024.1
|
||||
build_meson libxcvt $(fdo_mirror libxcvt) libxcvt-0.1.0
|
||||
build_ac xorgproto $(fdo_mirror xorgproto) xorgproto-2024.1
|
||||
if [ "$X11_OS" = "Darwin" ]; then
|
||||
build_ac xset https://github.com/X11Libre/xset xset-1.2.5
|
||||
build_ac xset $(fdo_mirror xset) xset-1.2.5
|
||||
fi
|
||||
# really must be build via autoconf instead of meson, otherwise piglit wont find the test programs
|
||||
build_ac_xts xts https://github.com/X11Libre/xts 12a887c2c72c4258962b56ced7b0aec782f1ffed
|
||||
build_ac_xts xts $(fdo_mirror xts) 12a887c2c72c4258962b56ced7b0aec782f1ffed
|
||||
|
||||
clone_source piglit https://github.com/X11Libre/piglit 28d1349844eacda869f0f82f551bcd4ac0c4edfe
|
||||
clone_source piglit $(fdo_mirror piglit) 28d1349844eacda869f0f82f551bcd4ac0c4edfe
|
||||
|
||||
echo '[xts]' > piglit/piglit.conf
|
||||
echo "path=$X11_BUILD_DIR/xts" >> piglit/piglit.conf
|
||||
|
||||
5
.github/scripts/util.sh
vendored
5
.github/scripts/util.sh
vendored
@@ -114,3 +114,8 @@ build_ac_xts() {
|
||||
echo "::endgroup::"
|
||||
fi
|
||||
}
|
||||
|
||||
fdo_mirror() {
|
||||
local repo="$1"
|
||||
echo -n "https://github.com/X11Libre/mirror.fdo.$1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user