We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b759093 commit 701e178Copy full SHA for 701e178
.github/workflows/windows.yml
@@ -41,9 +41,13 @@ jobs:
41
42
- name: Install requirements on vcpkg
43
run: |
44
- vcpkg install zeromq:x64-windows
45
- vcpkg install czmq:x64-windows
46
- vcpkg install libffi:x64-windows
+ vcpkg --triplet x64-windows install zeromq czmq libffi
+ cp C:/vcpkg/installed/x64-windows/bin/libzmq-mt-4_3_3.dll C:/vcpkg/installed/x64-windows/bin/libzmq.dll
+ dir C:/vcpkg/installed/x64-windows/bin
47
+
48
+ - name: Add vcpkg bindir in PATH
49
+ run: echo "C:/vcpkg/installed/x64-windows/bin" >> $GITHUB_PATH
50
+ shell: bash
51
52
- run: pip3 install -r ci/requirements.txt
53
0 commit comments