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 gh actions macos builder #5774

Merged
merged 10 commits into from
Dec 21, 2024
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
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,11 @@ jobs:
- name: Install dependencies (MacOS)
if: startsWith(matrix.os, 'macos')
run: |
brew install boost openssl rapidjson p7zip create-dmg cmake tree
brew install openssl rapidjson p7zip create-dmg cmake tree
brew tap-new gh/local-boost
brew tap homebrew/core --force
brew extract --version=1.86.0 boost gh/local-boost
brew install boost@1.86.0
shell: bash

- name: Build (MacOS)
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:

- name: Install dependencies
run: |
brew install boost openssl rapidjson p7zip create-dmg cmake
brew install openssl rapidjson p7zip create-dmg cmake
brew tap-new gh/local-boost
brew tap homebrew/core --force
brew extract --version=1.86.0 boost gh/local-boost
brew install boost@1.86.0

- name: Install httpbox
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unversioned

- Bugfix: Fixed scrollbar highlights being visible in overlay windows. (#5769)
- Dev: Hard-code Boost 1.86.0 in macos CI builders. (#5774)

## 2.5.2-beta.1

Expand Down
Loading