Pin php to older clang version (#8485)

The php i386 build is broken since the last clang roll, due to a bug on
the clang side. This should get fixed when clang is updated again, but
for now pin to an older version.

FYI I also submitted
https://github.com/AFLplusplus/AFLplusplus/pull/1516 to hopefully
unblock the clang 15 update.
This commit is contained in:
Nikita Popov 2022-09-14 00:45:19 +02:00 committed by GitHub
parent c03c175c12
commit 6ac8d418a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@
#
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder
# The current clang revision is broken, pin to older one.
FROM gcr.io/oss-fuzz-base/base-builder@sha256:111d6b9d3a52bd3392602c71dc8936c628607a7a9bc86d381db7586f9b1e840f
RUN apt-get update && \
apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN git clone --depth 1 --branch master https://github.com/php/php-src.git php-src