Skip to content

Commit a3421f1

Browse files
committed
Bump default LLVM version to 22
1 parent 636af10 commit a3421f1

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- "19"
2828
- "20"
2929
- "21"
30+
- "22"
3031
steps:
3132
- name: Set up QEMU
3233
uses: docker/setup-qemu-action@v3

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ RUN apt update && apt install -y \
88
wget \
99
&& rm -rf /var/lib/apt/lists/*
1010

11-
# LLVM builds version 15-21 for Debian 12 (Bookworm)
11+
# LLVM builds version 15-22 for Debian 12 (Bookworm)
1212
# https://apt.llvm.org/bookworm/dists/
13-
ARG LLVM_VERSION=21
13+
ARG LLVM_VERSION=22
1414

1515
RUN echo "deb http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-$LLVM_VERSION main" > /etc/apt/sources.list.d/llvm.list
1616
RUN echo "deb-src http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-$LLVM_VERSION main" >> /etc/apt/sources.list.d/llvm.list

Dockerfile.LibAFL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Stage 1: Build LibAFL's libFuzzer compatibility library
22
ARG RUBY_VERSION=4.0
3-
ARG LLVM_VERSION=21
3+
ARG LLVM_VERSION=22
44

55
FROM debian:bookworm-slim AS libafl-builder
66

0 commit comments

Comments
 (0)