Merge 7b38dfc337ca4712f105ead6b4e38dda65341171 into 777cfa77d1f84bb08b3e445d5f7fc6c87282223b

This commit is contained in:
Hennadii Stepanov 2025-06-02 21:59:54 +01:00 committed by GitHub
commit 790644ba95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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