Skip to content

Commit 15755d6

Browse files
committed
feat: support clang v21
1 parent 67ce616 commit 15755d6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Dockerfile.all

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN set -e \
1818
apt-get --no-install-recommends -y install clang-format-$CLANG_VERSION clang-tidy-$CLANG_VERSION; done \
1919
&& rm -rf /var/lib/apt/lists/*
2020

21-
ENV CLANG_VERSIONS="20 19 18 17 16 15 14 13"
21+
ENV CLANG_VERSIONS="21 20 19 18 17 16 15 14 13"
2222

2323
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2424

@@ -33,7 +33,7 @@ RUN set -e \
3333
&& rm llvm.sh \
3434
&& rm -rf /var/lib/apt/lists/*
3535

36-
ENV CLANG_VERSIONS="20 19 18 17 16 15 14 13 12 11 10 9"
36+
ENV CLANG_VERSIONS="21 20 19 18 17 16 15 14 13 12 11 10 9"
3737
# Integrity testing
3838
RUN set -e \
3939
&& for VERSION in $CLANG_VERSIONS; do \

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ You can access all available Clang Tools Docker images via [Docker Hub registry
1212

1313
## Supported Tags and Dockerfile links
1414

15-
* [`all`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.all) (Supports versions of clang-tools includes `20`, `19`, `18`, `17`, `16`, `15`, `14`, `13`, `12`, `11`, `10`, `9`)
15+
* [`all`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.all) (Supports versions of clang-tools includes `21`, `20`, `19`, `18`, `17`, `16`, `15`, `14`, `13`, `12`, `11`, `10`, `9`)
16+
* [`21`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)
17+
* [`21-alpine`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.alpine)
1618
* [`20`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)
1719
* [`20-alpine`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.alpine)
1820
* [`19`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)

docker-bake.hcl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
group "default" {
33
targets = [
44
"all",
5+
"21",
6+
"21-alpine",
57
"20",
68
"20-alpine",
79
"19",

0 commit comments

Comments
 (0)