We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5846910 commit e4e63d9Copy full SHA for e4e63d9
.github/workflows/ci-macvim.yaml
@@ -113,9 +113,16 @@ jobs:
113
env:
114
HOMEBREW_NO_AUTO_UPDATE: 1
115
run: |
116
- brew install python
+ brew install python3
117
brew install ruby
118
brew install lua
119
+
120
+ # CI sometimes have custom installed Python instead of using Homebrew. Forcefully re-
121
+ # link Python, and then check that we are using the Homebrew version. This avoids us
122
+ # using a mystery Python installation that we don't control.
123
+ brew unlink python3 && brew link --overwrite python3
124
+ readlink -f $vi_cv_path_python3 | grep "^$(brew --cellar python3)"
125
126
if [[ -d /usr/local/Cellar/perl ]]; then
127
# We just use system perl to reduce dependencies
128
brew unlink perl
0 commit comments