Skip to content

Commit

Permalink
Remove C compiler settings
Browse files Browse the repository at this point in the history
  • Loading branch information
serge1 authored Dec 13, 2023
1 parent 05a0f3d commit 6a94d4d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit 6a94d4d

Please sign in to comment.