mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
65 lines
1.8 KiB
YAML
65 lines
1.8 KiB
YAML
name: macos
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- macos
|
|
generator:
|
|
- Ninja
|
|
configuration:
|
|
- Release
|
|
runs-on: [self-hosted, macOS, ARM64]
|
|
env:
|
|
# The `build` action requires these variables.
|
|
build_dir: .build
|
|
NUM_PROCESSORS: 12
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: install Conan
|
|
run: |
|
|
brew install conan@1
|
|
echo '/opt/homebrew/opt/conan@1/bin' >> $GITHUB_PATH
|
|
- 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: |
|
|
echo ${PATH} | tr ':' '\n'
|
|
python --version
|
|
conan --version
|
|
cmake --version
|
|
env
|
|
- name: configure Conan
|
|
run : |
|
|
conan profile new default --detect || true
|
|
conan profile update settings.compiler.cppstd=20 default
|
|
conan profile update 'conf.tools.build:cxxflags+=["-DBOOST_ASIO_DISABLE_CONCEPTS"]' default
|
|
- name: build
|
|
uses: ./.github/actions/build
|
|
with:
|
|
generator: ${{ matrix.generator }}
|
|
configuration: ${{ matrix.configuration }}
|
|
- name: test
|
|
run: |
|
|
${build_dir}/rippled --unittest
|