ci: clang-13 support added for Conan

This commit is contained in:
Mateusz Pusz
2021-08-10 14:33:48 +02:00
parent 6b8cd399d5
commit 1530d1f6a3
2 changed files with 12 additions and 0 deletions

View File

@@ -126,6 +126,12 @@ jobs:
conan profile update settings.compiler.libcxx=${{ matrix.config.lib }} default
fi
conan profile show default
- name: Add support for clang-13 to Conan's settings.yml
# TODO Remove when Conan will support clang-13
if: matrix.config.compiler.type == 'CLANG'
shell: bash
run: |
sed -i -e 's/"8", "9", "10", "11", "12"]/"8", "9", "10", "11", "12", "13"]/' ~/.conan/settings.yml
- name: Run Conan Package Tools
shell: bash
env:

View File

@@ -144,6 +144,12 @@ jobs:
conan profile update settings.compiler.libcxx=${{ matrix.config.lib }} default
fi
conan profile show default
- name: Add support for clang-13 to Conan's settings.yml
# TODO Remove when Conan will support clang-13
if: matrix.config.compiler.type == 'CLANG'
shell: bash
run: |
sed -i -e 's/"8", "9", "10", "11", "12"]/"8", "9", "10", "11", "12", "13"]/' ~/.conan/settings.yml
- name: Install Conan dependencies
shell: bash
run: |