From f19c563331ca6b49667e69a5ac763fcdfc02abd6 Mon Sep 17 00:00:00 2001 From: Sameeh Jubran Date: Wed, 18 Feb 2026 15:52:09 +0200 Subject: [PATCH] Fix haproxy CI: VTest2 repo archived, use `last` tag The vtest/VTest2 GitHub repo was archived on 2026-02-18 and its main branch Makefile now exits with "THIS REPOSITORY HAS MOVED". The maintainers tagged the last buildable commit as `last`. Patch build-vtest.sh for both haproxy versions in the matrix: - v3.1.0 still references wlallemand/VTest (removed long ago) - v3.2.0 references vtest/VTest2 main branch (now broken) Signed-off-by: Sameeh Jubran --- .github/workflows/haproxy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haproxy.yml b/.github/workflows/haproxy.yml index 17f0f3f088..a391bf6c94 100644 --- a/.github/workflows/haproxy.yml +++ b/.github/workflows/haproxy.yml @@ -82,12 +82,12 @@ jobs: working-directory: build-dir/haproxy-${{matrix.haproxy_ref}} run: make clean && make TARGET=linux-glibc USE_OPENSSL_WOLFSSL=1 SSL_LIB=$GITHUB_WORKSPACE/build-dir/lib SSL_INC=$GITHUB_WORKSPACE/build-dir/include ADDLIB=-Wl,-rpath,$GITHUB_WORKSPACE/build-dir/lib CFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address" - # wlallemand/VTest used in v3.1.0 is no longer available - - name: Patch build-vtest.sh for v3.1.0 - if: matrix.haproxy_ref == 'v3.1.0' + # VTest2 has moved off GitHub; use the last known good tag + - name: Patch build-vtest.sh for VTest2 migration working-directory: build-dir/haproxy-${{ matrix.haproxy_ref }}/scripts run: | - sed -i 's|https://github.com/wlallemand/VTest/archive/refs/heads/haproxy-sd_notify.tar.gz|https://github.com/vtest/VTest2/archive/main.tar.gz|' build-vtest.sh + sed -i 's|https://github.com/wlallemand/VTest/archive/refs/heads/haproxy-sd_notify.tar.gz|https://github.com/vtest/VTest2/archive/refs/tags/last.tar.gz|' build-vtest.sh + sed -i 's|https://github.com/vtest/VTest2/archive/main.tar.gz|https://github.com/vtest/VTest2/archive/refs/tags/last.tar.gz|' build-vtest.sh - name: Build haproxy vtest working-directory: build-dir/haproxy-${{matrix.haproxy_ref}}