From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 22 May 2026 14:33:31 +0000 (+0300) Subject: [3.10] CI: Move Homebrew dependencies into Brewfile (GH-148335) (GH-149884) (#149990) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b286d98783db0c1169f558b4c6d7512cb3264274;p=thirdparty%2FPython%2Fcpython.git [3.10] CI: Move Homebrew dependencies into Brewfile (GH-148335) (GH-149884) (#149990) Co-authored-by: Brett Cannon --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cbd43da6fc9..46bd45231454 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -189,7 +189,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - 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 tcl-tk@8 - name: Configure CPython diff --git a/Misc/Brewfile b/Misc/Brewfile new file mode 100644 index 000000000000..37e3acde4a05 --- /dev/null +++ b/Misc/Brewfile @@ -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?