diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 569d4458..4e60e8f9 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -61,6 +61,12 @@ jobs: compiler: { type: CLANG, version: 12, cc: "clang-12", cxx: "clang++-12" }, lib: "libc++" } + - { + name: "Ubuntu Clang 13.0.0 + libc++", + os: ubuntu-20.04, + compiler: { type: CLANG, version: 13, cc: "clang-13", cxx: "clang++-13" }, + lib: "libc++" + } # In case a Conan docker image will be needed to provide a specific configuration we can use a Docker image as follows # - { # name: "Ubuntu GCC 10.2.0", diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index e97c43fa..af3b3bf4 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -65,6 +65,12 @@ jobs: compiler: { type: CLANG, version: 12, cc: "clang-12", cxx: "clang++-12" }, lib: "libc++" } + - { + name: "Ubuntu Clang 13.0.0 + libc++", + os: ubuntu-20.04, + compiler: { type: CLANG, version: 13, cc: "clang-13", cxx: "clang++-13" }, + lib: "libc++" + } # In case a Conan docker image will be needed to provide a specific configuration we can use a Docker image as follows # - { # name: "Ubuntu GCC 10.2.0",