Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/reusable-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ jobs:
run: echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV"
- name: Install Homebrew dependencies
run: |
brew install pkg-config [email protected] xz gdbm tcl-tk@9 make
# Because alternate versions are not symlinked into place by default:
brew link --overwrite tcl-tk@9
brew bundle --file=Misc/Brewfile
brew install make
- name: Configure CPython
run: |
MACOSX_DEPLOYMENT_TARGET=10.15 \
Expand Down
15 changes: 15 additions & 0 deletions Misc/Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
brew "gdbm"
brew "mpdecimal"
brew "[email protected]"
brew "pkg-config"
brew "tcl-tk@9"
brew "xz"
brew "zstd"

brew "bzip2" if OS.linux?
brew "expat" if OS.linux?
brew "libedit" if OS.linux?
brew "libffi" if OS.linux?
brew "ncurses" if OS.linux?
brew "unzip" if OS.linux?
brew "zlib-ng-compat" if OS.linux?
Loading