Skip to content

Commit f19c563

Browse files
committed
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 <sameeh@wolfssl.com>
1 parent 63b9d13 commit f19c563

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/haproxy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ jobs:
8282
working-directory: build-dir/haproxy-${{matrix.haproxy_ref}}
8383
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"
8484

85-
# wlallemand/VTest used in v3.1.0 is no longer available
86-
- name: Patch build-vtest.sh for v3.1.0
87-
if: matrix.haproxy_ref == 'v3.1.0'
85+
# VTest2 has moved off GitHub; use the last known good tag
86+
- name: Patch build-vtest.sh for VTest2 migration
8887
working-directory: build-dir/haproxy-${{ matrix.haproxy_ref }}/scripts
8988
run: |
90-
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
89+
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
90+
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
9191
9292
- name: Build haproxy vtest
9393
working-directory: build-dir/haproxy-${{matrix.haproxy_ref}}

0 commit comments

Comments
 (0)