Issue |
151221
|
Summary |
Issue in the last two weeks installing v21 clang-format and clang-tidy
|
Labels |
clang-tidy,
clang-format
|
Assignees |
|
Reporter |
ansible42
|
For context this is running in ubuntu docker container as part of a build system. Two weeks ago things were fine. This clode block ran and installed
```docker
RUN apt-get update && \
apt-get install -y wget software-properties-common && \
wget -qO - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \
apt-get update && \
apt-get install -y clang-format && \
apt-get install -y clang-tidy && \
# Clean up the package lists to minimize the image size
rm -rf /var/lib/apt/lists/*
# Verify installation
RUN clang-format --version
RUN clang-tidy --version
```
Resulting in the desired versions being installed
<img width="1024" height="452" alt="Image" src="" />
but now when I run the same pipeline I get
<img width="1174" height="1320" alt="Image" src="" />
Any ideas?
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs