Skip to content

Commit

Permalink
Merge pull request #1438 from ychin/fix-ci-python3-installation
Browse files Browse the repository at this point in the history
Fix CI Python3 breakage
  • Loading branch information
ychin authored Oct 11, 2023
2 parents 57b0bab + e8e3946 commit 3803c15
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-macvim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ jobs:
- name: Install packages
if: matrix.publish
run: |
brew install python3
# We no longer need to install/update Python 3, as it's guaranteed to
# be installed on runners. Since we use stable ABI, the exact version
# on CI does not matter.
brew install ruby
brew install lua
Expand All @@ -146,8 +149,8 @@ jobs:
#
# This will be removed in the future as Python2 has been completely
# unsupported for years.
curl https://www.python.org/ftp/python/2.7.16/python-2.7.16-macosx10.9.pkg -o ~/Downloads/python-2.7.16-macosx10.9.pkg
sudo installer -pkg ~/Downloads/python-2.7.16-macosx10.9.pkg -target /
curl https://www.python.org/ftp/python/2.7.18/python-2.7.18-macosx10.9.pkg -o ~/Downloads/python-2.7.18-macosx10.9.pkg
sudo installer -pkg ~/Downloads/python-2.7.18-macosx10.9.pkg -target /
# All set up steps are done. Build and test MacVim below.

Expand Down

0 comments on commit 3803c15

Please sign in to comment.