Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7fc61e commit 7ac8eeeCopy full SHA for 7ac8eee
1 file changed
.github/workflows/tests.yml
@@ -158,7 +158,12 @@ jobs:
158
;;
159
macOS)
160
brew update
161
- brew install ccache ghostscript gobject-introspection gtk4 ninja
+ brew install ccache ghostscript ninja
162
+ # The macOS 12 images have an older Python, and this causes homebrew to generate conflicts.
163
+ # We'll just skip GTK for now, to not pull in Python updates.
164
+ if [[ "${{ matrix.os }}" = macos-14 ]]; then
165
+ brew install gobject-introspection gtk4
166
+ fi
167
brew install --cask font-noto-sans-cjk inkscape
168
169
esac
0 commit comments