]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/non-native: fix TLS backend in Android job names
authorViktor Szakats <commit@vsz.me>
Tue, 21 Jan 2025 00:05:56 +0000 (01:05 +0100)
committerViktor Szakats <commit@vsz.me>
Tue, 21 Jan 2025 00:10:16 +0000 (01:10 +0100)
Also drop whitespaces/alignment.

Reported-by: Tal Regev
Follow-up to 12a6de2f660dd692cce93cb65ce6e3ec126bb531 #16043

.github/workflows/non-native.yml

index c1d8bf542b78ce33d899d3449f1ac0d185fe6c8f..5cbe12c7cc9cd5e9a96ad62f9063769972ef9876 100644 (file)
@@ -381,22 +381,22 @@ jobs:
     strategy:
       matrix:
         include:
-          - { build: 'autotools', platform: '21', name: "libressl"       , install: 'brotli zstd libpsl nghttp2 openssl   libssh2',
+          - { build: 'autotools', platform: '21', name: "openssl", install: 'brotli zstd libpsl nghttp2 openssl libssh2',
               options: '--with-openssl --with-brotli' }
 
-          - { build: 'cmake'    , platform: '21', name: "libressl"       , install: 'brotli zstd libpsl nghttp2 openssl   libssh2',
+          - { build: 'cmake'    , platform: '21', name: "openssl", install: 'brotli zstd libpsl nghttp2 openssl libssh2',
               options: '-DCURL_USE_OPENSSL=ON' }
 
-          - { build: 'autotools', platform: '35', name: "libressl"       , install: 'brotli zstd libpsl nghttp2 openssl   libssh2',
+          - { build: 'autotools', platform: '35', name: "openssl", install: 'brotli zstd libpsl nghttp2 openssl libssh2',
               options: '--with-openssl --with-brotli' }
 
-          - { build: 'cmake'    , platform: '35', name: "libressl"       , install: 'brotli zstd libpsl nghttp2 openssl   libssh2',
+          - { build: 'cmake'    , platform: '35', name: "openssl", install: 'brotli zstd libpsl nghttp2 openssl libssh2',
               options: '-DCURL_USE_OPENSSL=ON' }
 
           # FIXME: Must disable zstd explicitly, otherwise cmake/pkg-config finds it in /usr/include
           #        and the build fails. I had found no option to disable this behavior. Other default
           #        dependencies not offered via vcpkg may also need this.
-          - { build: 'cmake'    , platform: '35', name: "boringssl !zstd", install: '            libpsl         boringssl',
+          - { build: 'cmake'    , platform: '35', name: "boringssl !zstd", install: 'libpsl boringssl',
               options: '-DCURL_USE_OPENSSL=ON -DOPENSSL_USE_STATIC_LIBS=ON -DCURL_ZSTD=OFF' }
 
       fail-fast: false