From daf9fdc4ef0a96473e6fd8c2793e2e0385a8da1f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 8 Aug 2024 13:19:54 +0200 Subject: [PATCH] GHA/non-native: ignore FTP results in OpenBSD job They are flaky. --- .github/workflows/non-native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/non-native.yml b/.github/workflows/non-native.yml index 4d64d12a54..104e0acabe 100644 --- a/.github/workflows/non-native.yml +++ b/.github/workflows/non-native.yml @@ -104,7 +104,7 @@ jobs: bld/src/curl --disable --version if [ '${{ matrix.arch }}' = 'x86_64' ]; then # Slow on emulated CPU cmake --build bld --config Debug --parallel 3 --target testdeps - export TFLAGS='-j8 ~3017 ~TFTP' # FIXME: TFTP requests executed twice? Related: `curl: (69) TFTP: Access Violation`? + export TFLAGS='-j8 ~3017 ~TFTP ~FTP' # FIXME: TFTP requests executed twice? Related: `curl: (69) TFTP: Access Violation`? cmake --build bld --config Debug --target test-ci fi