]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/non-native: enable SFTP/SCP tests on FreeBSD
authorViktor Szakats <commit@vsz.me>
Sun, 15 Sep 2024 13:54:43 +0000 (15:54 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 15 Sep 2024 23:02:55 +0000 (01:02 +0200)
It's working now. Possibly fixed in the runner env?

Closes #14920

.github/workflows/non-native.yml

index 7abfce718486996be2bd58725faf66670fce0811..d2bfe663fd0743e0d5fa72e5eef4f3383ef262b6 100644 (file)
@@ -145,9 +145,7 @@ jobs:
             make -j3 examples
             if [ '${{ matrix.arch }}' = 'x86_64' ]; then  # Slow on emulated CPU
               make -j3 -C tests
-              # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
-              # therefore the SFTP and SCP tests are disabled right away from the beginning.
-              make test-ci V=1 TFLAGS='-j8 !SFTP !SCP ~FTP'
+              make test-ci V=1 TFLAGS='-j8 ~FTP'
             fi
 
       - name: 'cmake'
@@ -175,9 +173,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
-              # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
-              # therefore the SFTP and SCP tests are disabled right away from the beginning.
-              export TFLAGS='-j8 !SFTP !SCP ~FTP'
+              export TFLAGS='-j8 ~FTP'
               cmake --build bld --config Debug --target test-ci
             fi