GHA/non-native: skip test 2707 instead of all WebSocket tests on OpenBSD

Narrowing down the test which may be causing the flaky 6-minute long
delays and CI failures.

Suggested-by: Calvin Ruocco
Ref: https://github.com/curl/curl/pull/17562#issuecomment-2961629713

Follow-up to 05db18e054 #17562
Follow-up to d3594be653 #17136

Closes #17588
This commit is contained in:
Viktor Szakats 2025-06-11 11:17:55 +02:00
parent 1e2e808def
commit 49a1cfaec2
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -122,7 +122,7 @@ jobs:
bld/src/curl --disable --version bld/src/curl --disable --version
if [ "${MATRIX_ARCH}" = 'x86_64' ]; then # Slow on emulated CPU if [ "${MATRIX_ARCH}" = 'x86_64' ]; then # Slow on emulated CPU
time cmake --build bld --target testdeps time cmake --build bld --target testdeps
export TFLAGS='-j8 !WebSockets' export TFLAGS='-j8 !2707' # Skip 2707 'ws: Peculiar frame sizes' on suspicion of hangs
time cmake --build bld --target test-ci time cmake --build bld --target test-ci
fi fi
echo '::group::build examples' echo '::group::build examples'