File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed
Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff 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
3838RUN set -e \
3939 && for VERSION in $CLANG_VERSIONS; do \
Original file line number Diff line number Diff line change @@ -45,7 +45,26 @@ target "all" {
4545
4646target "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§ion=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"
You can’t perform that action at this time.
0 commit comments