From bc61c20ebb9ce6438052027352cf4f6302c29b3a Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Fri, 6 Oct 2023 22:05:24 +0200 Subject: [PATCH] wip --- .github/workflows/macos.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 95b26a209..c6f0d5b9d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -4,12 +4,13 @@ on: [push, pull_request] jobs: build-macos: - name: AppleClang-C++${{matrix.std}}-${{matrix.build_type}} + name: AppleClang-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.threads}} runs-on: macos-12 strategy: fail-fast: true matrix: std: [14, 17, 20, 23] + threads: [with-threads, without-threads] include: - generator: Ninja - build_type: Debug @@ -37,6 +38,7 @@ jobs: -DCMAKE_CXX_FLAGS_RELEASE=-pedantic-errors \ -DCMAKE_CXX_STANDARD=${{matrix.std}} \ -DCMAKE_CXX_STANDARD_REQUIRED=ON \ + -WITH_THREADS=${{matrix.threads == 'with-threads'}} \ -G "${{matrix.generator}}" \ -Werror