fmt/.github/workflows/macos.yml

31 lines
761 B
YAML
Raw Normal View History

2020-11-03 18:46:03 +00:00
name: macos
2020-11-03 18:45:16 +00:00
2020-11-04 00:01:26 +00:00
on: [push, pull_request]
2020-11-03 18:45:16 +00:00
jobs:
build:
runs-on: macos-10.15
2020-11-03 20:16:15 +00:00
strategy:
matrix:
build_type: [Debug, Release]
2020-11-03 18:45:16 +00:00
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
2020-11-03 22:02:07 +00:00
- name: Configure
2020-11-03 18:45:16 +00:00
working-directory: ${{runner.workspace}}/build
2020-11-03 22:02:07 +00:00
run: |
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DFMT_DOC=OFF -DFMT_PEDANTIC=ON -DFMT_WERROR=ON $GITHUB_WORKSPACE
2020-11-03 18:45:16 +00:00
- name: Build
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: cmake --build . --config ${{matrix.build_type}}
2020-11-03 18:45:16 +00:00
- name: Test
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: ctest -C ${{matrix.build_type}}