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