Skip to content

Commit 78eda5a

Browse files
committed
update since v20 need new image
1 parent a4e1ced commit 78eda5a

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

Dockerfile.all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN set -e \
3333
&& rm llvm.sh \
3434
&& rm -rf /var/lib/apt/lists/*
3535

36-
ENV CLANG_VERSIONS="19 18 17 16 15 14 13 12 11 10 9"
36+
ENV CLANG_VERSIONS="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 \

docker-bake.hcl

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,26 @@ target "all" {
4545

4646
target "clang-tools" {
4747
matrix = {
48-
tgt = ["20", "19"]
48+
tgt = ["20"]
49+
}
50+
name = "${tgt}"
51+
dockerfile = "Dockerfile"
52+
context = "."
53+
args = {
54+
# https://packages.ubuntu.com/search?suite=default&section=all&arch=any&keywords=clang-format-20&searchon=names
55+
BASE_IMAGE="ubuntu:plucky"
56+
CLANG_VERSION="${tgt}",
57+
}
58+
tags = [
59+
"${DOCKER_REPO}:${tgt}",
60+
"${GITHUB_REPO}:${tgt}"
61+
]
62+
platforms = ["linux/amd64"]
63+
}
64+
65+
target "clang-tools" {
66+
matrix = {
67+
tgt = ["19"]
4968
}
5069
name = "${tgt}"
5170
dockerfile = "Dockerfile"

0 commit comments

Comments
 (0)