ci: clang-14 support added

This commit is contained in:
Mateusz Pusz
2022-05-11 19:35:07 +02:00
parent 6f665b2074
commit 05a5c881f0
2 changed files with 20 additions and 0 deletions

View File

@@ -115,6 +115,19 @@ jobs:
},
lib: "libc++",
}
- {
name: "Ubuntu Clang-14 + libc++",
os: ubuntu-20.04,
compiler:
{
type: CLANG,
version: 14,
cc: "clang-14",
cxx: "clang++-14",
std: 20,
},
lib: "libc++",
}
- {
name: "MacOS Apple Clang 13",
os: macos-11,

View File

@@ -80,6 +80,13 @@ jobs:
{ type: CLANG, version: 13, cc: "clang-13", cxx: "clang++-13" },
lib: "libc++",
}
- {
name: "Ubuntu Clang 14.0.0 + libc++",
os: ubuntu-20.04,
compiler:
{ type: CLANG, version: 14, cc: "clang-14", cxx: "clang++-14" },
lib: "libc++",
}
- {
name: "MacOS Apple Clang 13",
os: macos-11,