fix: add libclang-rt-18-dev to CI image for fuzz targets
CI / lint (push) Successful in 8s
CI / lint (pull_request) Successful in 8s
CI / sanitizers (address) (push) Successful in 15s
CI / sanitizers (undefined) (push) Successful in 14s
CI / fuzz-build (push) Failing after 15s
CI / build-and-test (push) Successful in 53s
CI / coverage (push) Successful in 11s
CI / valgrind (push) Successful in 11s
CI / sanitizers (address) (pull_request) Successful in 14s
CI / sanitizers (undefined) (pull_request) Successful in 14s
CI / fuzz-build (pull_request) Failing after 12s
CI / build-and-test (pull_request) Successful in 54s
CI / coverage (pull_request) Successful in 9s
CI / valgrind (pull_request) Successful in 11s

The clang-18 runtime libraries (fuzzer, ubsan, asan) were missing
from the fastsync-ci:v8 image because libclang-rt-18-dev was not
installed. This caused all 6 fuzz targets to fail at link time with
'cannot find libclang_rt.fuzzer-x86_64.a'.

Added the package to Dockerfile, rebuilt and pushed v8.
This commit is contained in:
2026-07-19 23:05:47 +02:00
parent 1d95b44d10
commit a507683589
+1 -1
View File
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc g++ make libc6-dev cmake libzstd-dev libssl-dev git ca-certificates curl cppcheck clang-format \
python3 python3-pip python3-venv openssl openssh-client \
lcov valgrind clang && \
lcov valgrind clang libclang-rt-18-dev && \
pip3 install --break-system-packages pytest && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y --no-install-recommends nodejs && \