Skip to content

Commit cc3114f

Browse files
committed
feat: add support for clang v22
1 parent ee6f4c4 commit cc3114f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

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 `21`, `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 `22`, `21`, `20`, `19`, `18`, `17`, `16`, `15`, `14`, `13`, `12`, `11`, `10`)
16+
* [`22`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)
17+
* [`22-alpine`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.alpine)
1618
* [`21`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)
1719
* [`21-alpine`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile.alpine)
1820
* [`20`](https://github.com/cpp-linter/clang-tools-docker/blob/master/Dockerfile)

docker-bake.hcl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
group "default" {
33
targets = [
44
"all",
5+
"22",
6+
"22-alpine",
57
"21",
68
"21-alpine",
79
"20",
@@ -52,7 +54,7 @@ target "all" {
5254

5355
target "clang-tools" {
5456
matrix = {
55-
tgt = ["21"]
57+
tgt = ["21", "22"]
5658
}
5759
name = "${tgt}"
5860
dockerfile = "Dockerfile"

0 commit comments

Comments
 (0)