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
This commit is contained in:
Viktor Szakats 2024-07-07 17:25:42 +02:00
parent f99c08dba4
commit 0b81eccd22
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -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