From 7b38dfc337ca4712f105ead6b4e38dda65341171 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:47:42 +0000 Subject: [PATCH] ci: Drop unused `matrix.c_compiler` --- .github/workflows/cmake-multi-platform.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index a6eb45e..9dcf85a 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -25,24 +25,21 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] build_type: [Debug] - 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++ 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 steps: - uses: actions/checkout@v3 @@ -60,7 +57,6 @@ jobs: run: > cmake -B ${{ steps.strings.outputs.build-output-dir }} -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} - -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DSUBPROCESS_TESTS=ON -S ${{ github.workspace }}