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 7a78803 commit 0d37d7dCopy full SHA for 0d37d7d
.github/workflows/downstream-tests.yml
@@ -34,7 +34,12 @@ jobs:
34
35
- name: Install CMake (Darwin)
36
if: ${{ matrix.os.platform == 'darwin' && matrix.name == 'pybind11' }}
37
- run: brew install cmake
+ run: |
38
+ if brew list cmake >/dev/null 2>&1; then
39
+ echo "cmake already installed"
40
+ else
41
+ brew install cmake
42
+ fi
43
44
- name: Install Rust toolchain
45
if: ${{ matrix.name == 'pyo3' || matrix.name == 'pydantic-core' || matrix.name == 'jiter' }}
0 commit comments