From e19716fd8972f41f76c4ccc72a137b824043b43b Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Thu, 5 Sep 2024 21:46:19 +0100 Subject: [PATCH] infra: bump introspector (#12453) Makes it possible to extract all files from a given project. This is particularly useful for bazel projects where we need a path prior to bazel build in order to identify harness source. Ref: https://github.com/google/oss-fuzz-gen/pull/577 --- infra/base-images/base-clang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/base-images/base-clang/Dockerfile b/infra/base-images/base-clang/Dockerfile index 003944f44..57cf2771c 100644 --- a/infra/base-images/base-clang/Dockerfile +++ b/infra/base-images/base-clang/Dockerfile @@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y wget sudo && \ RUN apt-get update && apt-get install -y git && \ git clone https://github.com/ossf/fuzz-introspector.git fuzz-introspector && \ cd fuzz-introspector && \ - git checkout b7e30c1424c64a2c14dfb38d901830aa66ed47a4 && \ + git checkout f034d26d6a7de8e2eebabe736ea631eee94678d3 && \ git submodule init && \ git submodule update && \ apt-get autoremove --purge -y git && \