From 05a5c881f0e48ffd1659513687366e4fccf7829e Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 11 May 2022 19:35:07 +0200 Subject: [PATCH] ci: clang-14 support added --- .github/workflows/ci-conan.yml | 13 +++++++++++++ .github/workflows/ci-test-package-cmake.yml | 7 +++++++ 2 files changed, 20 insertions(+) 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,