Skip to content

Commit

Permalink
chore: add macos dependency installation (#5233)
Browse files Browse the repository at this point in the history
* python (3.13) and cmake (latest)
  • Loading branch information
rrmanukyan authored Jan 7, 2025
1 parent 0324764 commit 040cd23
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,21 @@ jobs:
- name: install Ninja
if: matrix.generator == 'Ninja'
run: brew install ninja
- name: install python
run: |
if which python > /dev/null 2>&1; then
echo "Python executable exists"
else
brew install python@3.13
ln -s /opt/homebrew/bin/python3 /opt/homebrew/bin/python
fi
- name: install cmake
run: |
if which cmake > /dev/null 2>&1; then
echo "cmake executable exists"
else
brew install cmake
fi
- name: check environment
run: |
env | sort
Expand Down

0 comments on commit 040cd23

Please sign in to comment.