From 8573b12b9eefe046b9551e26c447f5fbec32f4f7 Mon Sep 17 00:00:00 2001 From: bgallois Date: Sat, 17 Feb 2024 15:23:28 +0100 Subject: [PATCH] [fix] fix macos ci --- .github/workflows/build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 412f1dc..46cf98d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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