2020-11-15 20:54:48 +00:00
|
|
|
name: macos
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{matrix.config.os}}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
config:
|
2022-07-21 16:01:56 +00:00
|
|
|
- { os: macos-11 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md#xcode
|
|
|
|
- { os: macos-12 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-12-Readme.md#xcode
|
2020-11-15 20:54:48 +00:00
|
|
|
build: [Debug, Release]
|
|
|
|
|
2021-04-02 21:00:23 +00:00
|
|
|
name: "${{matrix.config.os}}:${{matrix.build}}"
|
2020-11-15 20:54:48 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build}}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: cmake --build . --config ${{matrix.build}}
|
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
run: ctest --output-on-failure -C ${{matrix.build}}
|