From 2986846cd1774a59ba0b4189c7c33e21d30ff118 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 10 Aug 2021 14:16:41 +0200 Subject: [PATCH] ci: clang-13 CI added --- .github/workflows/ci-conan.yml | 6 ++++++ .github/workflows/ci-test-package-cmake.yml | 6 ++++++ 2 files changed, 12 insertions(+) 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",