From d95fa3ab8b72bb57377c024fa7423bad42beb51b Mon Sep 17 00:00:00 2001 From: speedie Date: Mon, 6 May 2024 00:06:06 +0200 Subject: [PATCH] Add macOS runner --- .github/workflows/cmake-multi-platform.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 3bf8849..5269342 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -26,23 +26,30 @@ jobs: os: [ubuntu-latest, windows-latest] build_type: [Release] c_compiler: [gcc, clang, cl] + cpp_compiler: [g++, clang++, cl] include: - os: windows-latest c_compiler: cl cpp_compiler: cl - os: ubuntu-latest - c_compiler: gcc - cpp_compiler: g++ - - os: ubuntu-latest + c_compiler: clang + cpp_compiler: clang++ + - os: macos-latest c_compiler: clang cpp_compiler: clang++ exclude: - os: windows-latest c_compiler: gcc + cpp_compiler: g++ - os: windows-latest c_compiler: clang + cpp_compiler: clang++ - os: ubuntu-latest c_compiler: cl + cpp_compiler: cl + - os: macos-latest + c_compiler: cl + cpp_compiler: cl steps: - uses: actions/checkout@v4