Set version to 1.12.0-b2 #588
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macos | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: | |
- macos | |
generator: | |
- Ninja | |
configuration: | |
- Release | |
runs-on: [self-hosted, macOS] | |
env: | |
# The `build` action requires these variables. | |
build_dir: .build | |
NUM_PROCESSORS: 12 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install Ninja | |
if: matrix.generator == 'Ninja' | |
run: brew install ninja | |
- name: check environment | |
run: | | |
echo ${PATH} | tr ':' '\n' | |
python --version | |
conan --version | |
cmake --version | |
env | sort | |
- name: configure Conan | |
run : | | |
conan profile get env.CXXFLAGS default || true | |
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 |