Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update `scripts/install_deps_macOS.sh` with setting HOMEBREW_DEVELOPER mode to install `asio`

### Removed

- Developer tool to review PRs -- Ellipsis
Expand Down
5 changes: 4 additions & 1 deletion scripts/install_deps_macOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ brew install glib temurin pkgconfig ninja ccache websocketpp nlohmann-json libxm
# TODO(NikitaZotov): Remove asio version 1.30.2 pinning below.
# Required because websocketpp 0.8.2 is incompatible with newer asio.
# Remove after updating websocketpp to a version including the fix from PR https://github.com/zaphoyd/websocketpp/pull/1164 or later.
brew uninstall --ignore-dependencies asio
brew uninstall --ignore-dependencies asio || true
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/502489d3a4c1ca0a3854830eb5da2327b6feb54d/Formula/a/asio.rb
Comment thread
gitar-bot[bot] marked this conversation as resolved.
Outdated
export HOMEBREW_DEVELOPER=1
brew install asio.rb
brew pin asio
unset HOMEBREW_DEVELOPER
rm -f asio.rb

"${SCRIPTS_PATH}/install_deps_python.sh"
Loading