workflow(macos): remove py3.11 links and add upstream discussion note #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WebP Pixbuf CI [MacOS] | |
on: | |
push: | |
branches: | |
- mainline | |
pull_request: | |
branches: | |
- mainline | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies via Homebrew | |
run: | | |
brew update | |
# fix `brew link [email protected]` issue | |
# see upstream discussion in https://github.com/actions/setup-python/issues/577 | |
rm -f /usr/local/bin/2to3 | |
rm -f /usr/local/bin/idle3 | |
rm -f /usr/local/bin/pydoc3 | |
rm -f /usr/local/bin/python3 | |
rm -f /usr/local/bin/python3-config | |
rm -f /usr/local/bin/2to3-3.12 | |
rm -f /usr/local/bin/idle3.12 | |
rm -f /usr/local/bin/pydoc3.12 | |
rm -f /usr/local/bin/python3.12 | |
rm -f /usr/local/bin/python3.12-config | |
brew install webp gdk-pixbuf meson ninja pkg-config | |
- run: meson setup build | |
- run: meson compile -C build --verbose | |
- run: meson test -C build --print-errorlogs |