Skip to content

Commit

Permalink
fixup! feat: support clang v18 (#71) (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxianpeng committed Mar 12, 2024
1 parent 04344d5 commit bbfb1f5
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,26 @@ target "all" {

target "clang-tools" {
matrix = {
tgt = ["18", "17", "16", "15", "14", "13"]
tgt = ["18"]
}
name = "${tgt}"
dockerfile = "Dockerfile"
context = "."
args = {
# https://packages.ubuntu.com/search?suite=default&section=all&arch=any&keywords=clang-format-18&searchon=names
BASE_IMAGE="ubuntu:noble"
CLANG_VERSION="${tgt}",
}
tags = [
"${DOCKER_REPO}:${tgt}",
"${GITHUB_REPO}:${tgt}"
]
platforms = ["linux/amd64"]
}

target "clang-tools" {
matrix = {
tgt = ["17", "16", "15", "14", "13"]
}
name = "${tgt}"
dockerfile = "Dockerfile"
Expand Down

0 comments on commit bbfb1f5

Please sign in to comment.