Skip to content

Commit

Permalink
CI: Try using newer compilers
Browse files Browse the repository at this point in the history
https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md suggests that GCC 13 and Clang 15 are installed on the build VM.
  • Loading branch information
fkutzner committed Apr 13, 2024
1 parent e1657bc commit 3d77924
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
c_compiler: gcc-13
cpp_compiler: g++-13
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
c_compiler: clang-15
cpp_compiler: clang++-15
exclude:
- os: windows-latest
c_compiler: gcc
Expand Down

0 comments on commit 3d77924

Please sign in to comment.