Skip to content

Commit

Permalink
[fix] fix macos ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bgallois committed Feb 17, 2024
1 parent b332581 commit 8573b12
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
path: ./fastanalyzer/dist/FastAnalyzer/

build_macos:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -41,8 +41,15 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
brew update
brew upgrade
rm -f /usr/local/bin/2to3*
rm -f /usr/local/bin/idle3*
rm -f /usr/local/bin/pydoc3*
rm -f /usr/local/bin/python3*
rm -f /usr/local/opt/go/bin/go*
rm -f /usr/local/bin/go*
rm -rf /usr/local/lib/node*
brew update -q -f
brew upgrade -q -f
python -m pip install --upgrade pip
python -m pip install pyinstaller
python -m pip install -r requirements.txt
Expand Down

0 comments on commit 8573b12

Please sign in to comment.