Skip to content

Commit

Permalink
Have separate macos "py dependencies" section
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy committed Oct 21, 2024
1 parent 84e12d6 commit ee2fa79
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -433,12 +433,15 @@ jobs:
rm /usr/local/bin/2to3* # symlink to some kind of existing python2.7 installation conflicts with brew python3 which gets installed as indirect dependency
brew bundle
brew install kadwanev/brew/retry
- name: py dependencies (macos)
if: contains(matrix.os, 'macos')
run: |
python3.12 -m venv .venv
source .venv/bin/activate
pip install meson setuptools
- name: py dependencies
if: contains(matrix.os, 'macos') != true
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
python3.12 -m venv .venv
source .venv/bin/activate
fi
#python3 -m pip install -U pip==21.3.1
pip install meson # ==0.61.5 # https://github.com/rizinorg/cutter/runs/7170222817?check_suite_focus=true
pip install setuptools
Expand Down

0 comments on commit ee2fa79

Please sign in to comment.