From: Viktor Szakats Date: Sun, 2 Jun 2024 17:30:19 +0000 (+0200) Subject: GHA: disable MQTT and WebSocket tests in Windows jobs X-Git-Tag: curl-8_9_0~322 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03bd16e5339b069aa9409b75fcab2b21fd3a4b16;p=thirdparty%2Fcurl.git GHA: disable MQTT and WebSocket tests in Windows jobs Trying to figure out which category is causing the remaining hangs. Follow-up to def7d05382743ea7aa1d356d1e41dcb22ecdd4d7 Closes #13860 --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d1a4775fd4..1ad0ad7b97 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -232,7 +232,7 @@ jobs: timeout-minutes: 30 shell: msys2 {0} run: | - export TFLAGS='-j14 !TFTP ${{ matrix.tflags }}' + export TFLAGS='-j14 !TFTP !MQTT !WebSockets ${{ matrix.tflags }}' if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")" fi @@ -296,7 +296,7 @@ jobs: timeout-minutes: 40 shell: msys2 {0} run: | - export TFLAGS='-j14 !TFTP ${{ matrix.tflags }}' + export TFLAGS='-j14 !TFTP !MQTT !WebSockets ${{ matrix.tflags }}' if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then TFLAGS+=" -ac $(cygpath "${SYSTEMROOT}/System32/curl.exe")" fi @@ -466,6 +466,6 @@ jobs: timeout-minutes: 30 shell: bash run: | - export TFLAGS='-j14 !TFTP ${{ matrix.tflags }}' + export TFLAGS='-j14 !TFTP !MQTT !WebSockets ${{ matrix.tflags }}' ls bld/lib/*.dll >/dev/null 2>&1 && cp -f -p bld/lib/*.dll bld/tests/libtest/ cmake --build bld --config '${{ matrix.type }}' --target test-ci