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 b759093 commit f72c73cCopy full SHA for f72c73c
.github/workflows/windows.yml
@@ -41,9 +41,12 @@ 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
+ dir C:/vcpkg/installed/x64-windows/bin
+
47
+ - name: Add vcpkg bindir in PATH
48
+ run: echo "C:/vcpkg/installed/x64-windows/bin" >> $GITHUB_PATH
49
+ shell: bash
50
51
- run: pip3 install -r ci/requirements.txt
52
0 commit comments