From 2f1dc6a9f363cea289245afb9409c1f7aa627ccd Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 16 Mar 2021 09:57:54 +0100 Subject: [PATCH] ci: Add support for clang-12 to Conan's settings.yml --- .github/workflows/ci-conan.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 4f470ed0..b62fb590 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -121,6 +121,12 @@ jobs: conan profile update settings.compiler.libcxx=${{ matrix.config.lib }} default fi conan profile show default + - name: Add support for clang-12 to Conan's settings.yml + # TODO Remove when Conan will support clang-12 (after clang-12 release) + if: matrix.config.compiler.type == 'CLANG' + shell: bash + run: | + sed -i -e 's/"8", "9", "10", "11"]/"8", "9", "10", "11", "12"]/' ~/.conan/settings.yml - name: Run Conan Package Tools shell: bash env: