Skip to content

Commit 462ab6a

Browse files
committed
ci: try to fix master jobs on windows
1 parent e539f83 commit 462ab6a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci-master.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ jobs:
3939

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

0 commit comments

Comments
 (0)