Skip to content

Commit 9059d4b

Browse files
committed
Added Clang 21, removed clang 18
1 parent 8cf2b1e commit 9059d4b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# steps to perform in job
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
# setup Docker buld action
2323
- name: Set up Docker Buildx
@@ -38,7 +38,7 @@ jobs:
3838
# Note: tags has to be all lower-case
3939
tags: |
4040
madduci/docker-linux-cpp:latest
41-
madduci/docker-linux-cpp:2.1
41+
madduci/docker-linux-cpp:2.2
4242
# build on feature branches, push only on master branch
4343
push: ${{ github.ref == 'refs/heads/master' }}
4444

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM ubuntu:24.04
22

3-
LABEL maintainer="Michele Adduci <[email protected]>" \
3+
LABEL maintainer="Michele Adduci <[email protected]>" \
44
license="MIT"
55

66
WORKDIR /project
77

88
ARG DEB_COMPILERS="g++-12 g++-13 g++-14"
9-
ARG EXTRA_CLANG_COMPILERS="18 19 20"
9+
ARG EXTRA_CLANG_COMPILERS="19 20 21"
1010

1111
RUN echo "Installing required packages " \
1212
&& export DEBIAN_FRONTEND=noninteractive \

0 commit comments

Comments
 (0)