Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the macOS CI build #2220

Merged
merged 10 commits into from
Mar 30, 2024
Merged
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
10 changes: 7 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,15 @@ jobs:
- name: Install build tools
run: |
brew update
brew install \
# Remove the bloat installed by default to avoid conflicts
brew remove --force $(brew list)
# Make sure to overwrite existing symlinks
brew install --overwrite \
cmake \
ninja \
create-dmg \
gettext \
create-dmg
ninja \
pkg-config
brew link gettext --force
- uses: actions/setup-python@v5 # Workaround for #2069
with:
Expand Down
Loading