mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
chore: add macos dependency installation (#5233)
* python (3.13) and cmake (latest)
This commit is contained in:
15
.github/workflows/macos.yml
vendored
15
.github/workflows/macos.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user