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

Use --force with brew install, block upgrades #1780

Merged
merged 3 commits into from
Mar 9, 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
8 changes: 6 additions & 2 deletions .github/workflows/build-and-test-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ concurrency:
cancel-in-progress: true
jobs:
build:
env:
HOMEBREW_NO_INSTALL_UPGRADE: 1
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
strategy:
matrix:
os:
Expand All @@ -29,7 +32,7 @@ jobs:
steps:
- name: Install dependencies
run: |
brew install \
brew install --force \
cmake \
freetype \
gettext \
Expand All @@ -42,7 +45,8 @@ jobs:
libxi \
lua \
ninja \
pkg-config
pkg-config \
|| true # Ignore errors
- name: Checkout
uses: actions/checkout@v4
- run: mkdir build
Expand Down