Skip to content

Commit

Permalink
fix gh actions macos builder (#5774)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored Dec 21, 2024
1 parent a540770 commit 3c17f86
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
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

0 comments on commit 3c17f86

Please sign in to comment.