From dead29362a9e8f1dc7e5c59f9ff358337ff0e121 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 15 Feb 2026 13:53:42 +0100 Subject: [PATCH] GHA/windows: mark test 3000 flaky too Similar to test 3001 marked flaky earlier. Example: https://github.com/curl/curl/actions/runs/22035738719/job/63668228484?pr=20597#step:14:4099 Follow-up to 3ae234b2a3aca14908c292ac09755f6c08daac1a #20462 Closes #20602 --- .github/workflows/windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 034f007aca..82c04c8a28 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -425,7 +425,7 @@ jobs: TFLAGS="-j8 ${TFLAGS}" if [ "${MATRIX_SYS}" != 'msys' ]; then TFLAGS+=' !498' # 'Reject too large HTTP response headers on endless redirects' HTTP, HTTP GET (runtests detecting result code 2009 instead of 56 returned by curl) - TFLAGS+=' ~3001' # 'HTTPS localhost, last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) + TFLAGS+=' ~3000 ~3001' # 'HTTPS localhost, first/last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) if [[ "${MATRIX_INSTALL}" = *'libssh2-wincng'* ]]; then TFLAGS+=' ~SCP ~SFTP' # Flaky: `-8, Unable to exchange encryption keys`. https://github.com/libssh2/libssh2/issues/804 fi @@ -644,7 +644,7 @@ jobs: PATH="/d/my-cache/${MATRIX_DIR}/bin:$PATH" TFLAGS="-j8 ${TFLAGS}" TFLAGS+=' !498' # 'Reject too large HTTP response headers on endless redirects' HTTP, HTTP GET (runtests detecting result code 2009 instead of 56 returned by curl) - TFLAGS+=' ~3001' # 'HTTPS localhost, last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) + TFLAGS+=' ~3000 ~3001' # 'HTTPS localhost, last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")" fi @@ -1039,7 +1039,7 @@ jobs: run: | TFLAGS="-j8 ${TFLAGS}" TFLAGS+=' !498' # 'Reject too large HTTP response headers on endless redirects' HTTP, HTTP GET (runtests detecting result code 2009 instead of 56 returned by curl) - TFLAGS+=' ~3001' # 'HTTPS localhost, last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) + TFLAGS+=' ~3000 ~3001' # 'HTTPS localhost, last subject alt name matches, CN does not match' HTTPS, HTTP GET, PEM certificate (returning 56) if [[ "${MATRIX_INSTALL_MSYS2}" = *'libssh2-wincng'* || \ "${MATRIX_INSTALL_VCPKG}" = *'libssh2[core,zlib]'* ]]; then TFLAGS+=' ~SCP ~SFTP' # Flaky: `-8, Unable to exchange encryption keys`. https://github.com/libssh2/libssh2/issues/804