Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/dist-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ jobs:
if: runner.os == 'macOS'
run: brew install pkg-config

- name: Install CMake 3 on MacOS
# libbson requires cmake 3, and cmake 4 is now the default on the GHA runners.
if: ${{ startsWith(runner.os, 'macOS') }}
run: |
pipx install "cmake>=3.15,<4"

- name: Install deps
run: python -m pip install "cibuildwheel>=2.4,<3" uv rust-just

Expand Down Expand Up @@ -108,7 +114,7 @@ jobs:

make_sdist:
name: Make SDist
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
with:
mongodb-version: 4.4
mongodb-replica-set: test-rs
- name: Install CMake 3 on MacOS
# libbson requires cmake 3, and cmake 4 is now the default on the GHA runners.
if: ${{ startsWith(runner.os, 'macOS') }}
run: |
pipx install "cmake>=3.15,<4"
- name: Start MongoDB on MacOS
if: ${{ startsWith(runner.os, 'macOS') }}
run: |
Expand Down
Loading