From 067bc8ee2df214788b2d8fc10d24a808896abe0d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 7 Jul 2025 16:13:04 +0200 Subject: [PATCH] GHA/linux: fix output in download-decompress commands Regression from 17a669426f36b467dfd945b4b35f6211598b7977 #17537 Closes #17848 --- .github/workflows/linux.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b22fdb6df0..0b58f737a8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -347,7 +347,7 @@ jobs: - name: 'build libressl' if: ${{ contains(matrix.build.install_steps, 'libressl') && steps.cache-libressl.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/libressl/portable/releases/download/v${LIBRESSL_VERSION}/libressl-${LIBRESSL_VERSION}.tar.gz" | tar -xz cd "libressl-${LIBRESSL_VERSION}" ./configure --disable-dependency-tracking --prefix=/home/runner/libressl @@ -366,7 +366,7 @@ jobs: - name: 'build wolfssl (all)' # does not support `OPENSSL_COEXIST` if: ${{ contains(matrix.build.install_steps, 'wolfssl-all') && steps.cache-wolfssl-all.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}-stable.tar.gz" | tar -xz cd "wolfssl-${WOLFSSL_VERSION}-stable" ./autogen.sh @@ -387,7 +387,7 @@ jobs: - name: 'build wolfssl (opensslextra)' if: ${{ contains(matrix.build.install_steps, 'wolfssl-opensslextra') && steps.cache-wolfssl-opensslextra.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}-stable.tar.gz" | tar -xz cd "wolfssl-${WOLFSSL_VERSION}-stable" ./autogen.sh @@ -408,7 +408,7 @@ jobs: - name: 'build wolfssh' if: ${{ contains(matrix.build.install_steps, 'wolfssh') && steps.cache-wolfssh.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/wolfSSL/wolfssh/archive/v${WOLFSSH_VERSION}-stable.tar.gz" | tar -xz cd "wolfssh-${WOLFSSH_VERSION}-stable" ./autogen.sh @@ -429,7 +429,7 @@ jobs: - name: 'build mbedtls' if: ${{ contains(matrix.build.install_steps, 'mbedtls') && steps.cache-mbedtls.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/Mbed-TLS/mbedtls/releases/download/mbedtls-${MBEDTLS_VERSION}/mbedtls-${MBEDTLS_VERSION}.tar.bz2" | tar -xj cd "mbedtls-${MBEDTLS_VERSION}" ./scripts/config.py set MBEDTLS_THREADING_C @@ -509,7 +509,7 @@ jobs: - name: 'build awslc' if: ${{ contains(matrix.build.install_steps, 'awslc') && steps.cache-awslc.outputs.cache-hit != 'true' }} run: | - curl -LOsSf --retry 6 --retry-connrefused --max-time 999 \ + curl -LsSf --retry 6 --retry-connrefused --max-time 999 \ "https://github.com/awslabs/aws-lc/archive/refs/tags/v${AWSLC_VERSION}.tar.gz" | tar -xz mkdir "aws-lc-${AWSLC_VERSION}-build" cd "aws-lc-${AWSLC_VERSION}-build" -- 2.47.2