From f8973ffc2edd155d677c99068a023b535fed9b9a Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 15 Sep 2025 09:29:17 +0200 Subject: [PATCH] .github: use our own mirrors of build dependencies f.d.o is failing too often in recent times, so switching to our own mirrors at github. Signed-off-by: Enrico Weigelt, metux IT consult --- .github/scripts/install-prereq.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/scripts/install-prereq.sh b/.github/scripts/install-prereq.sh index 02abc1d5f..7e997d017 100755 --- a/.github/scripts/install-prereq.sh +++ b/.github/scripts/install-prereq.sh @@ -7,20 +7,20 @@ set -e mkdir -p $X11_BUILD_DIR cd $X11_BUILD_DIR -build_meson rendercheck https://gitlab.freedesktop.org/xorg/test/rendercheck rendercheck-1.6 +build_meson rendercheck https://github.com/X11Libre/rendercheck rendercheck-1.6 if [ "$X11_OS" = "Linux" ]; then -build_meson drm https://gitlab.freedesktop.org/mesa/drm libdrm-2.4.121 -Domap=enabled +build_meson drm https://github.com/X11Libre/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 +build_meson libxcvt https://github.com/X11Libre/libxcvt libxcvt-0.1.0 +build_ac xorgproto https://github.com/X11Libre/xorgproto xorgproto-2024.1 if [ "$X11_OS" = "Darwin" ]; then -build_ac xset https://gitlab.freedesktop.org/xorg/app/xset xset-1.2.5 +build_ac xset https://github.com/X11Libre/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://gitlab.freedesktop.org/xorg/test/xts aae51229af810efba24412511f60602fab53eded +build_ac_xts xts https://github.com/X11Libre/xts aae51229af810efba24412511f60602fab53eded -clone_source piglit https://gitlab.freedesktop.org/mesa/piglit 28d1349844eacda869f0f82f551bcd4ac0c4edfe +clone_source piglit https://github.com/X11Libre/piglit 28d1349844eacda869f0f82f551bcd4ac0c4edfe echo '[xts]' > piglit/piglit.conf echo "path=$X11_BUILD_DIR/xts" >> piglit/piglit.conf