Skip to content

Commit

Permalink
Merge pull request #31 from aeris170/cmake-vcpkg-action
Browse files Browse the repository at this point in the history
Add GCC to compilers to compile against
  • Loading branch information
aeris170 committed Aug 31, 2024
2 parents 4e81af2 + 4147c65 commit bde51c9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,22 @@ jobs:
matrix:
os: [ubuntu-24.04, windows-latest]
build_type: [Debug, Release, RelWithDebInfo]
c_compiler: [clang, cl]
c_compiler: [gcc, clang, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-24.04
c_compiler: gcc
cpp_compiler: g++
cpp_flags: "-fmax-errors=0"
- os: ubuntu-24.04
c_compiler: clang
cpp_compiler: clang++
cpp_flags: "-ferror-limit=0"
exclude:
- os: windows-latest
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: ubuntu-24.04
Expand Down

0 comments on commit bde51c9

Please sign in to comment.