From: Stefan Eissing Date: Mon, 30 Oct 2023 14:16:49 +0000 (+0100) Subject: GHA: fix checkout of quictls repository to use correct branch name X-Git-Tag: curl-8_5_0~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a3e27729097045d037c655432c4c2f9f5dd4bfe;p=thirdparty%2Fcurl.git GHA: fix checkout of quictls repository to use correct branch name Follow-up to c868b0e30f10cd0ac7 Closes #12232 --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a256b26993..534ebfd3e9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -295,9 +295,9 @@ jobs: - name: 'build quictls' if: contains(matrix.build.install_steps, 'quictls') && steps.cache-quictls.outputs.cache-hit != 'true' run: | - git clone --quiet --depth=1 -b ${{ env.quictls-version }} https://github.com/quictls/openssl + git clone --quiet --depth=1 -b openssl-${{ env.quictls-version }} https://github.com/quictls/openssl cd openssl - ./config enable-tls1_3 --prefix=$HOME/quictls + ./config enable-tls1_3 --prefix=$HOME/quictls --libdir=$HOME/quictls/lib make -j1 install_sw - name: cache msh3