From a7602ffcc354af7cfa6b3aa4150719dfa78940c9 Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Sun, 24 Sep 2023 14:34:04 +0200 Subject: [PATCH] CI: Actually fix OpenSSL usage on Windows Now with OpenSSL 3 (aqtinstall doesn't seem to provide OpenSSL 1.1 any more). --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6acd2aa0..e5381b1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,7 @@ jobs: cache: true cache-key-prefix: Qt modules: ${{ matrix.qt-version == 6 && 'qtmultimedia' || '' }} - tools: "tools_ninja${{ startsWith(matrix.os, 'windows') && ' tools_openssl_x64' || '' }}" + tools: "tools_ninja${{ startsWith(matrix.os, 'windows') && ' tools_opensslv3_x64' || '' }}" # Install on Linux via apt to get Qt built with OpenSSL 3 - name: Install Qt (Linux)