From cf02751ebe43ab17af465b86bb66a8fcb050baad Mon Sep 17 00:00:00 2001 From: David Reidsma Date: Wed, 3 Jan 2024 21:31:01 -0500 Subject: [PATCH] Update cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 948293a..cb35c21 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -25,7 +25,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] build_type: [Release] - c_compiler: [gcc, clang, cl] + c_compiler: [gcc, clang, cl, ninja] include: - os: windows-latest c_compiler: cl @@ -36,6 +36,9 @@ jobs: - os: ubuntu-latest c_compiler: clang cpp_compiler: clang++ + - os: ubuntu-latest + c_compiler: ninja + cpp_compiler: ninja++ exclude: - os: windows-latest c_compiler: gcc