Skip to content

Commit e539f83

Browse files
committed
attempt windows CI fix
1 parent 755b231 commit e539f83

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ jobs:
4040

4141
- name: Install OpenSSL
4242
if: matrix.target.os == 'windows-latest'
43-
run: choco install openssl
43+
run: choco install openssl -y --forcex64 --no-progress
4444
- name: Set OpenSSL dir in env
4545
if: matrix.target.os == 'windows-latest'
46-
run: echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append
46+
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
4749
4850
- name: Install Rust (${{ matrix.version }})
4951
uses: actions-rust-lang/setup-rust-toolchain@v1

0 commit comments

Comments
 (0)