Remove C compiler settings

This commit is contained in:
Serge Lamikhov-Center 2023-12-13 18:17:50 +02:00 committed by GitHub
parent 05a0f3dcd1
commit 6a94d4d108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,16 +15,16 @@ jobs:
matrix:
os: [ubuntu-latest, ubuntu-20.04, windows-latest]
build_type: [Release, Debug]
c_compiler: [gcc, clang, cl]
cpp_compiler: [g++, clang++, cl]
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
- os: ubuntu-20.04
c_compiler: cl
cpp_compiler: cl
steps:
- uses: actions/checkout@v3
@ -34,13 +34,12 @@ jobs:
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build/${{ matrix.build_type }}/${{ matrix.c_compiler }}" >> "$GITHUB_OUTPUT"
echo "build-output-dir=${{ github.workspace }}/build/${{ matrix.build_type }}/${{ matrix.cpp_compiler }}" >> "$GITHUB_OUTPUT"
- name: Configure CMake
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 }}
-DELFIO_BUILD_EXAMPLES=YES -DELFIO_BUILD_TESTS=YES
-S ${{ github.workspace }}