Skip to content

Commit

Permalink
Merge pull request #277 from tsuyoshicho/fix/build
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshicho authored Sep 1, 2024
2 parents fc7e25f + 54ab101 commit b179661
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
- os: ubuntu-latest
# linux only vim/ macvim run as mac os
type: macvim
- os: macos-latest
type: vim
# v8.2.1310 or later is required to build on macos-latest
vim: v8.2.0020
- os: macos-latest
type: macvim
# macvim only head
Expand Down Expand Up @@ -47,7 +51,11 @@ jobs:
brew install lua
- name: Setup pip
run: |
sudo pip3 install -U pip
if [ "${{ matrix.os }}" = "macos-latest" ]; then
sudo pip3 install -U pip --break-system-packages
else
sudo pip3 install -U pip
fi
- name: Get pip cache
id: pip-cache
run: |
Expand All @@ -61,7 +69,11 @@ jobs:
${{ runner.os }}-pip-
- name: Setup cached item
run: |
pip3 install --user -r requirements.txt
if [ "${{ matrix.os }}" = "macos-latest" ]; then
pip3 install --user -r requirements.txt --break-system-packages
else
pip3 install --user -r requirements.txt
fi
- name: Setup Vim
id: 'vim'
uses: thinca/action-setup-vim@v2
Expand Down

0 comments on commit b179661

Please sign in to comment.