Skip to content

Commit 23b2801

Browse files
committed
ci: add llvm-18 tests
LLVM/Clang 18 is available now, run against it as well. This also should fix current LLVM 17 failure, which assumes LLVM 17 is the latest one. Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
1 parent 6762256 commit 23b2801

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/docker/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG SHORTNAME="jammy"
88
ENV SHORTNAME=$SHORTNAME
99

1010
RUN apt-get update && apt-get install -y curl gnupg
11-
RUN if [ "${LLVM_VERSION}" = "17" ]; \
11+
RUN if [ "${LLVM_VERSION}" = "18" ]; \
1212
then \
1313
echo "\n\
1414
deb http://apt.llvm.org/${SHORTNAME}/ llvm-toolchain-${SHORTNAME} main\n\

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
llvm: [11, 12, 13, 14, 15, 16, 17]
15+
llvm: [11, 12, 13, 14, 15, 16, 17, 18]
1616
steps:
1717
- uses: actions/checkout@v2
1818
with:

0 commit comments

Comments
 (0)