-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
CI: Move Homebrew dependencies into Brewfile #148335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hugovk
wants to merge
7
commits into
python:main
Choose a base branch
from
hugovk:3.15-brewfile
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+11
−3
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2b36429
Move Homebrew dependencies into Brewfile
hugovk 301147e
No need to link the default version
hugovk f54be75
Explicitly install tcl-tk9
hugovk f8abb34
@
hugovk c37c6da
Merge remote-tracking branch 'upstream/main' into 3.15-brewfile
hugovk 3a804b8
Only install gmake from Homebrew on CI
hugovk b29865e
Add mpdecimal and zstd to Brewfile
hugovk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| brew "gdbm" | ||
| brew "mpdecimal" | ||
| brew "openssl@3.5" | ||
| brew "pkg-config" | ||
| brew "tcl-tk@9" | ||
| brew "xz" | ||
| brew "zstd" | ||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,9 +38,8 @@ jobs: | |
| run: echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV" | ||
| - name: Install Homebrew dependencies | ||
| run: | | ||
| brew install pkg-config openssl@3.5 xz gdbm tcl-tk@9 make | ||
| # Because alternate versions are not symlinked into place by default: | ||
| brew link --overwrite tcl-tk@9 | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will backport to 3.10, but we still need to link |
||
| brew bundle --file=.github/workflows/Brewfile | ||
| brew install make | ||
| - name: Configure CPython | ||
| run: | | ||
| MACOSX_DEPLOYMENT_TARGET=10.15 \ | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about
mpdecimalandzstd?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like they are already part of the macOS runners, so we never had to add them.
But I'll add so we can recommend the Brewfile in the devguide.