mirror of
https://github.com/python/cpython.git
synced 2026-06-27 19:36:07 +00:00
[3.12] CI: Move Homebrew dependencies into Brewfile (GH-148335) (GH-149884) (#149988)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Brett Cannon <brett@python.org>
This commit is contained in:
parent
ae9ebe4839
commit
7c999be49d
2 changed files with 15 additions and 1 deletions
2
.github/workflows/reusable-macos.yml
vendored
2
.github/workflows/reusable-macos.yml
vendored
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
key: ${{ github.job }}-${{ env.IMAGE_OS_VERSION }}-${{ inputs.config_hash }}
|
||||
- name: Install Homebrew dependencies
|
||||
run: |
|
||||
brew install pkg-config openssl@3.0 xz gdbm tcl-tk@8
|
||||
brew bundle --file=Misc/Brewfile
|
||||
# Because alternate versions are not symlinked into place by default:
|
||||
brew link --overwrite tcl-tk@8
|
||||
- name: Configure CPython
|
||||
|
|
|
|||
14
Misc/Brewfile
Normal file
14
Misc/Brewfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
brew "gdbm"
|
||||
brew "mpdecimal"
|
||||
brew "openssl@3.0"
|
||||
brew "pkg-config"
|
||||
brew "tcl-tk@8"
|
||||
brew "xz"
|
||||
brew "zstd"
|
||||
|
||||
brew "bzip2" 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…
Add table
Add a link
Reference in a new issue