Skip to content

Commit 5dfda82

Browse files
committed
Forcefully link in Homebrew's Python
1 parent 5846910 commit 5dfda82

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci-macvim.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,15 @@ jobs:
113113
env:
114114
HOMEBREW_NO_AUTO_UPDATE: 1
115115
run: |
116-
brew install python
116+
brew install python3
117+
# Forcefully re-link Python. GitHub CI by default uses a custom
118+
# installed Python, but we really want the Homebrew so it's
119+
# consistent with the linked DLL.
120+
brew unlink python3 && brew link -v --overwrite python3
121+
117122
brew install ruby
118123
brew install lua
124+
119125
if [[ -d /usr/local/Cellar/perl ]]; then
120126
# We just use system perl to reduce dependencies
121127
brew unlink perl

0 commit comments

Comments
 (0)