We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755b231 commit e539f83Copy full SHA for e539f83
.github/workflows/ci.yml
@@ -40,10 +40,12 @@ jobs:
40
41
- name: Install OpenSSL
42
if: matrix.target.os == 'windows-latest'
43
- run: choco install openssl
+ run: choco install openssl -y --forcex64 --no-progress
44
- name: Set OpenSSL dir in env
45
46
- run: echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append
+ run: |
47
+ echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append
48
+ echo 'OPENSSL_DIR=C:\Program Files\OpenSSL' | Out-File -FilePath $env:GITHUB_ENV -Append
49
50
- name: Install Rust (${{ matrix.version }})
51
uses: actions-rust-lang/setup-rust-toolchain@v1
0 commit comments