Skip to content

Commit

Permalink
[ci] Fix issues due to brew package changes (#294)
Browse files Browse the repository at this point in the history
* [ci] Fix pkgconf package conflict

* Link mariadb-connector-c in homebrew install

This brew package is now keg-only so we need to link it explicitly for
it to be symlinked into accessible paths.

Homebrew/homebrew-core#196747

* [ci] Remove verbose flag
  • Loading branch information
tobil4sk authored Nov 25, 2024
1 parent d8a3b46 commit 6c09ca7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
run: |
set -ex
brew update
brew uninstall --force pkg-config
brew install pkgconf --overwrite
brew bundle --file="${{ matrix.BREWFILE }}"
- name: CMake
Expand Down
2 changes: 1 addition & 1 deletion extra/Brewfile-STATIC_DEPS_ALL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
brew "cmake"
brew "ninja"
brew "pkg-config"
brew "pkgconf"
brew "automake"
brew "libtool"
2 changes: 1 addition & 1 deletion extra/Brewfile-STATIC_DEPS_NONE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ brew "cmake"
brew "ninja"
brew "pkg-config"
brew "bdw-gc"
brew "mariadb-connector-c"
brew "mariadb-connector-c", link: true
brew "mbedtls"
brew "pcre2"

0 comments on commit 6c09ca7

Please sign in to comment.