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 b86df39Copy full SHA for b86df39
.github/workflows/rust.yml
@@ -18,9 +18,12 @@ 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: echo "OPENSSL_DIR=C:\Program Files\OpenSSL" >> $env:GITHUB_ENV
+ run: vcpkg install openssl:x64-windows-static-md
24
+ - name: Configure OpenSSL to link via vcpkg
25
+ if: startsWith(matrix.os, 'windows')
26
+ run: echo "VCPKGRS_DYNAMIC=1" >> $env:GITHUB_ENV
27
- name: Build
28
run: cargo build --verbose
29
- name: Run tests
0 commit comments