ci: Drop unused matrix.c_compiler

This commit is contained in:
Hennadii Stepanov 2024-02-28 09:47:42 +00:00
parent 4025693dec
commit 7b38dfc337
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -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 }}