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 020f841 commit 15f66e6Copy full SHA for 15f66e6
.github/workflows/build-wheels.yml
@@ -69,19 +69,18 @@ jobs:
69
70
# Further brew packages needed to run/install vcpkg dependencies
71
- name: Setup MacOS dependencies
72
- if: matrix.os == 'macos-latest'
+ if: matrix.os_dist.os == 'macos-latest'
73
run: |
74
brew install ninja
75
brew install autoconf
76
brew install libtool
77
brew install automake
78
79
80
- - name : Ensure CMake Windows
81
- if: matrix.os == 'windows-latest'
+ - name: Ensure CMake Windows
+ if: matrix.os_dist.os == 'windows-latest'
82
run: choco install cmake --install-args 'ADD_CMAKE_TO_PATH=System' -y
83
84
-
85
- name: Initialize vcpkg
86
uses: lukka/run-vcpkg@v11
87
with:
0 commit comments