ci: clang-tools installation added

This commit is contained in:
Mateusz Pusz
2023-09-26 15:40:08 +02:00
parent 7a6b629218
commit 993ea8e3ac
2 changed files with 2 additions and 0 deletions

View File

@@ -177,6 +177,7 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh ${{ matrix.config.compiler.version }}
sudo apt install -y clang-tools-${{ matrix.config.compiler.version }}
- name: Install Libc++
if: matrix.config.compiler.type == 'CLANG' && matrix.config.lib == 'libc++'
shell: bash

View File

@@ -146,6 +146,7 @@ jobs:
shell: bash
run: |
sudo apt install -y g++-${{ matrix.config.compiler.version }}
sudo apt install -y clang-tools-${{ matrix.config.compiler.version }}
- name: Install Clang
if: matrix.config.compiler.type == 'CLANG'
shell: bash