a507683589
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.
10 lines
511 B
Docker
10 lines
511 B
Docker
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 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 && \
|
|
rm -rf /var/lib/apt/lists/*
|