Skip to content

Commit d4be1c0

Browse files
authored
Fix CI with macos runners (#1737)
1 parent 493c064 commit d4be1c0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,14 @@ jobs:
9797
# try to install them anyways, so we save an apt-roundtrip.
9898
sudo aptitude -o Acquire::Retries=30 install gcc-multilib g++-multilib pkg-config libgmp-dev libgmp-dev:i386 libx11-dev:i386 -y
9999
100+
- name: macos fix
101+
if: runner.os == 'Macos'
102+
run: |
103+
brew update
104+
brew upgrade
105+
brew install pkgconf
106+
# work around https://github.com/actions/runner-images/issues/10984
107+
100108
- name: Checkout tree
101109
uses: actions/checkout@v4
102110

0 commit comments

Comments
 (0)