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 5531c77 commit 419fe42Copy full SHA for 419fe42
2 files changed
.github/workflows/reusable-macos.yml
@@ -38,7 +38,7 @@ jobs:
38
run: echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV"
39
- name: Install Homebrew dependencies
40
run: |
41
- brew install pkg-config openssl@3.0 xz gdbm tcl-tk@8
+ brew bundle --file=Misc/Brewfile
42
# Because alternate versions are not symlinked into place by default:
43
brew link --overwrite tcl-tk@8
44
- name: Configure CPython
Misc/Brewfile
@@ -0,0 +1,15 @@
1
+brew "gdbm"
2
+brew "mpdecimal"
3
+brew "openssl@3.0"
4
+brew "pkg-config"
5
+brew "tcl-tk@8"
6
+brew "xz"
7
+brew "zstd"
8
+
9
+brew "bzip2" if OS.linux?
10
+brew "expat" if OS.linux?
11
+brew "libedit" if OS.linux?
12
+brew "libffi" if OS.linux?
13
+brew "ncurses" if OS.linux?
14
+brew "unzip" if OS.linux?
15
+brew "zlib-ng-compat" if OS.linux?
0 commit comments