Skip to content

Commit

Permalink
fix cmake presets for new CI compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackMATov committed Jun 17, 2024
1 parent 56c2a78 commit 704c541
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
}
},
{
"name": "linux-clang-15",
"name": "linux-clang-18",
"inherits": "linux-base",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang-15",
"CMAKE_CXX_COMPILER": "clang++-15"
"CMAKE_C_COMPILER": "clang-18",
"CMAKE_CXX_COMPILER": "clang++-18"
}
},
{
Expand All @@ -51,11 +51,11 @@
}
},
{
"name": "linux-gcc-13",
"name": "linux-gcc-14",
"inherits": "linux-base",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc-13",
"CMAKE_CXX_COMPILER": "g++-13"
"CMAKE_C_COMPILER": "gcc-14",
"CMAKE_CXX_COMPILER": "g++-14"
}
},
{
Expand Down Expand Up @@ -213,14 +213,14 @@
"configurePreset": "linux-clang-10"
},
{
"name": "linux-clang-15-debug",
"name": "linux-clang-18-debug",
"configuration": "Debug",
"configurePreset": "linux-clang-15"
"configurePreset": "linux-clang-18"
},
{
"name": "linux-clang-15-release",
"name": "linux-clang-18-release",
"configuration": "Release",
"configurePreset": "linux-clang-15"
"configurePreset": "linux-clang-18"
},
{
"name": "linux-gcc-10-debug",
Expand All @@ -233,14 +233,14 @@
"configurePreset": "linux-gcc-10"
},
{
"name": "linux-gcc-13-debug",
"name": "linux-gcc-14-debug",
"configuration": "Debug",
"configurePreset": "linux-gcc-13"
"configurePreset": "linux-gcc-14"
},
{
"name": "linux-gcc-13-release",
"name": "linux-gcc-14-release",
"configuration": "Release",
"configurePreset": "linux-gcc-13"
"configurePreset": "linux-gcc-14"
},
{
"name": "macos-arm64-debug",
Expand Down Expand Up @@ -347,19 +347,19 @@
"configurePreset": "linux-clang-10"
},
{
"name": "linux-clang-15",
"name": "linux-clang-18",
"inherits": "test-base",
"configurePreset": "linux-clang-15"
"configurePreset": "linux-clang-18"
},
{
"name": "linux-gcc-10",
"inherits": "test-base",
"configurePreset": "linux-gcc-10"
},
{
"name": "linux-gcc-13",
"name": "linux-gcc-14",
"inherits": "test-base",
"configurePreset": "linux-gcc-13"
"configurePreset": "linux-gcc-14"
},
{
"name": "macos-arm64",
Expand Down

0 comments on commit 704c541

Please sign in to comment.