From 3bf45edd84b5d8e1fb073ce0113fdf724ea14384 Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Mon, 23 Dec 2024 13:27:18 +0100 Subject: [PATCH] ci: add openssl to 'windows_latest' --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 63bf1cf60..bef8f18e7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,6 +41,12 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true profile: minimal + - name: Install OpenSSL (windows) + if: matrix.os == 'windows-latest' + run: | + choco install openssl.light --no-progress + echo "C:\Program Files\OpenSSL\bin" >> $env::GITHUB_PATH + - name: Test on Rust ${{ matrix.toolchain }} (only Windows) if: matrix.os == 'windows-latest' run: cargo test --verbose --no-default-features