From 5d7a2fa90ef2f4ed0727e275eb6b42017973a23c Mon Sep 17 00:00:00 2001 From: Ravenwater Date: Wed, 1 Jan 2025 16:51:49 -0500 Subject: [PATCH] how about now --- .github/workflows/cmake-multi-platform.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 3b7aa41..a394e16 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -23,21 +23,24 @@ jobs: # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: - #os: [ubuntu-latest, windows-latest] - os: [windows-latest] + 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: windows-latest + c_compiler: clang + cpp_compiler: clang++ exclude: - os: windows-latest c_compiler: gcc - - os: windows-latest - c_compiler: clang + cpp_compiler: g++ - os: ubuntu-latest c_compiler: cl + cpp_compiler: cl - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++