cicd: add clang-tidy to .drone.yml apt install packages

This commit is contained in:
light7734 2024-10-14 11:26:14 +03:30
parent cdf58d74e5
commit e76dae503e
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ steps:
image: ubuntu:latest
commands:
- apt update
- apt-get install -y build-essential cmake clang gcc g++ python3 python3-pip python3.12-venv
- apt-get install -y build-essential cmake clang clang-tidy gcc g++ python3 python3-pip python3.12-venv
- python3 -m venv /opt/venv
- . /opt/venv/bin/activate
@ -48,7 +48,7 @@ steps:
image: ubuntu:latest
commands:
- apt update
- apt-get install -y build-essential cmake clang gcc g++ python3 python3-pip python3.12-venv
- apt-get install -y build-essential cmake clang clang-tidy gcc g++ python3 python3-pip python3.12-venv
- python3 -m venv /opt/venv
- . /opt/venv/bin/activate