2020-11-28 14:34:34 +01:00
|
|
|
name: Mac builds
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-10-15 11:29:22 +02:00
|
|
|
# macos-12 updated to a toolchain that crashes when linking the
|
|
|
|
# test binary. This seems to be a known bug in that version,
|
|
|
|
# and will eventually get fixed in an update. After that, we can go
|
|
|
|
# back to newer macos images.
|
|
|
|
runs-on: macos-11
|
2020-11-28 14:34:34 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
cxx:
|
2022-08-03 23:44:49 +02:00
|
|
|
- g++-11
|
2020-11-28 14:34:34 +01:00
|
|
|
- clang++
|
|
|
|
build_type: [Debug, Release]
|
2020-11-28 21:13:00 +01:00
|
|
|
std: [14, 17]
|
2020-11-28 19:14:21 +01:00
|
|
|
include:
|
|
|
|
- build_type: Debug
|
|
|
|
examples: ON
|
|
|
|
extra_tests: ON
|
2020-11-28 14:34:34 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Configure build
|
|
|
|
working-directory: ${{runner.workspace}}
|
|
|
|
env:
|
|
|
|
CXX: ${{matrix.cxx}}
|
|
|
|
CXXFLAGS: ${{matrix.cxxflags}}
|
|
|
|
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
|
|
|
# This is important
|
|
|
|
run: |
|
2020-11-28 19:14:21 +01:00
|
|
|
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
2022-10-28 18:36:58 +02:00
|
|
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
|
|
|
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
|
|
|
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
|
|
|
-DCATCH_DEVELOPMENT_BUILD=ON \
|
|
|
|
-DCATCH_BUILD_EXAMPLES=${{matrix.examples}} \
|
2020-11-28 19:14:21 +01:00
|
|
|
-DCATCH_BUILD_EXTRA_TESTS=${{matrix.examples}}
|
2020-11-28 14:34:34 +01:00
|
|
|
|
|
|
|
- name: Build tests + lib
|
|
|
|
working-directory: ${{runner.workspace}}/build
|
|
|
|
run: make -j 2
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
|
|
working-directory: ${{runner.workspace}}/build
|
|
|
|
# Hardcode 2 cores we know are there
|
|
|
|
run: ctest -C ${{matrix.build_type}} -j 2
|