ci: add clang-tidy to Debian x86_64 base image

Issue: #23912
This commit is contained in:
Kyle Edwards 2022-09-20 14:01:18 -04:00 committed by Brad King
parent b15ddc766c
commit 0ac9ec47f6
3 changed files with 25 additions and 1 deletions

View File

@ -16,6 +16,9 @@ MAINTAINER Ben Boeckel <ben.boeckel@kitware.com>
COPY install_deps.sh /root/install_deps.sh
RUN sh /root/install_deps.sh
COPY install_clang_tidy.sh /root/install_clang_tidy.sh
RUN sh /root/install_clang_tidy.sh
COPY --from=iwyu-build /root/iwyu.tar.gz /root/iwyu.tar.gz
RUN tar -C / -xf /root/iwyu.tar.gz
RUN ln -s /usr/lib/llvm-6.0/bin/include-what-you-use /usr/bin/include-what-you-use-6.0

View File

@ -0,0 +1,21 @@
#!/bin/sh
set -e
# clang-tidy headers
apt-get install -y \
gnupg2
GNUPGHOME=$(mktemp -d)
export GNUPGHOME
keyid=6084F3CF814B57C1CF12EFD515CF4D18AF4F7421
gpg2 --keyserver hkps://keyserver.ubuntu.com --recv-keys "$keyid"
gpg2 -o /usr/share/keyrings/llvm.gpg --export "$keyid"
rm -rf "$GNUPGHOME"
unset GNUPGHOME
echo 'deb [signed-by=/usr/share/keyrings/llvm.gpg] http://apt.llvm.org/buster/ llvm-toolchain-buster-14 main' > /etc/apt/sources.list.d/llvm.list
apt-get update
apt-get install -y \
clang-tidy-14 \
libclang-14-dev
apt-get clean

View File

@ -45,7 +45,7 @@
### Debian
.debian10:
image: "kitware/cmake:ci-debian10-x86_64-2022-08-30"
image: "kitware/cmake:ci-debian10-x86_64-2022-09-22"
variables:
GIT_CLONE_PATH: "$CI_BUILDS_DIR/cmake ci"