chore: add macos dependency installation (#5233)

* python (3.13) and cmake (latest)
This commit is contained in:
rrmanukyan
2025-01-07 12:08:39 -05:00
committed by GitHub
parent 0324764a83
commit 040cd23e4a

View File

@@ -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