diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 55024a62..0c1ad283 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -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, diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 2337af7e..2c6440ac 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -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,