From: Viktor Szakats Date: Sun, 7 Jul 2024 15:25:42 +0000 (+0200) Subject: GHA: ignore FTP test result in Windows jobs X-Git-Tag: curl-8_9_0~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b81eccd22fb915aa6b679c0fd23a8a89332dc9e;p=thirdparty%2Fcurl.git GHA: ignore FTP test result in Windows jobs They are flaky. E.g.: - old-mingw-w64 7.3.0: 2001, 2039, 2083 - msvc: 1501, 593 (multiple) Ref: https://github.com/curl/curl/pull/13599#issuecomment-2119372376 Cherry-picked from #14116 --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 530f727001..54193928be 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -236,7 +236,7 @@ jobs: run: | export TFLAGS='-j14 ${{ matrix.tflags }}' if [ '${{ matrix.sys }}' != 'msys' ]; then - TFLAGS+=' !TFTP !MQTT !WebSockets !SMTP' + TFLAGS+=' !TFTP !MQTT !WebSockets !SMTP ~FTP' fi if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")" @@ -305,7 +305,7 @@ jobs: run: | export TFLAGS='-j14 ${{ matrix.tflags }}' if [ '${{ matrix.sys }}' != 'msys' ]; then - TFLAGS+=' !TFTP !MQTT !WebSockets !SMTP' + TFLAGS+=' !TFTP !MQTT !WebSockets !SMTP ~FTP' fi if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")" @@ -541,7 +541,7 @@ jobs: timeout-minutes: 30 shell: bash run: | - export TFLAGS='-j14 !TFTP !MQTT !WebSockets !SMTP ${{ matrix.tflags }}' + export TFLAGS='-j14 !TFTP !MQTT !WebSockets !SMTP ~FTP ${{ matrix.tflags }}' if [[ '${{ matrix.config }}' = *'-DUSE_WIN32_IDN=ON'* ]]; then TFLAGS+=' ~165 ~1448 ~2046 ~2047' fi