Skip to content

Commit

Permalink
React to ubuntu-latest changing to 24.04 (#1181)
Browse files Browse the repository at this point in the history
* React to ubuntu-latest changing to 24.04
Reacting to actions/runner-images#10636
* update clang to 16,17,18
* update gcc to 12,13,14
  • Loading branch information
carsonRadtke authored Jan 3, 2025
1 parent 16a6019 commit c832885
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/compilers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ jobs:
gcc:
strategy:
matrix:
gcc_version: [ 10, 11, 12 ]
gcc_version: [ 12, 13, 14 ]
build_type: [ Debug, Release ]
cxx_version: [ 14, 17, 20, 23 ]
exclude:
- gcc_version: 10
cxx_version: 23
# https://github.com/google/googletest/issues/4232
# Looks like GoogleTest is not interested in making version 1.14
# work with gcc-12.
Expand All @@ -44,9 +42,15 @@ jobs:
clang:
strategy:
matrix:
clang_version: [ 13, 14, 15 ]
clang_version: [ 16, 17, 18 ]
build_type: [ Debug, Release ]
cxx_version: [ 14, 17, 20, 23 ]
exclude:
# https://github.com/llvm/llvm-project/issues/93734
# Looks like clang fixed this issue in clang-18, but won't backport
# the fix.
- clang_version: 17
cxx_version: 23
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ Below is a table showing the versions currently being tested (also see [.github/

Compiler |Toolset Versions Currently Tested
:------- |--:
GCC | 10, 11, 12
GCC | 12, 13, 14
XCode | 14.3.1, 15.4
Clang | 13, 14, 15
Clang | 16, 17, 18
Visual Studio with MSVC | VS2019, VS2022
Visual Studio with LLVM | VS2019, VS2022

Expand Down

0 comments on commit c832885

Please sign in to comment.