Skip to content
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
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
7 changes: 5 additions & 2 deletions 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
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/502489d3a4c1ca0a3854830eb5da2327b6feb54d/Formula/a/asio.rb
brew uninstall --ignore-dependencies asio || true
curl -fsSL -O https://raw.githubusercontent.com/Homebrew/homebrew-core/502489d3a4c1ca0a3854830eb5da2327b6feb54d/Formula/a/asio.rb
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