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 ec74e16 commit 4f1ebd3Copy full SHA for 4f1ebd3
.github/workflows/rust.yml
@@ -18,7 +18,14 @@ jobs:
18
19
steps:
20
- uses: actions/checkout@v3
21
- - name: Set OPENSSL_DIR for Windows
+ - name: Install OpenSSL
22
+ if: startsWith(matrix.os, 'windows')
23
+ run: |
24
+ dir "C:\Program Files\OpenSSL"
25
+ choco install openssl -y --no-progress
26
27
+ dir "C:\Program Files\OpenSSL-Win64"
28
+ - name: Configure OpenSSL link path
29
if: startsWith(matrix.os, 'windows')
30
run: echo "OPENSSL_DIR=C:\Program Files\OpenSSL" >> $env:GITHUB_ENV
31
- name: Build
0 commit comments