We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 493c064 commit d4be1c0Copy full SHA for d4be1c0
.github/workflows/build.yml
@@ -97,6 +97,14 @@ jobs:
97
# try to install them anyways, so we save an apt-roundtrip.
98
sudo aptitude -o Acquire::Retries=30 install gcc-multilib g++-multilib pkg-config libgmp-dev libgmp-dev:i386 libx11-dev:i386 -y
99
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
+
108
- name: Checkout tree
109
uses: actions/checkout@v4
110
0 commit comments