aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/build_fuzzers.py
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-10-05 09:01:38 -0400
committerGitHub <noreply@github.com>2021-10-05 09:01:38 -0400
commit26a0eab439cbb05a89e5e4bedcfb9de22b42754f (patch)
tree678cf4e9b1aa7b58f6423c444d0b737a95751122 /infra/cifuzz/build_fuzzers.py
parent1d588e62cdc119f676316fbcab13cc331c7fb08c (diff)
downloadoss-fuzz-26a0eab439cbb05a89e5e4bedcfb9de22b42754f.tar.gz
[cifuzz][prow] Support docker in docker to support prow. (#6556)
Diffstat (limited to 'infra/cifuzz/build_fuzzers.py')
-rw-r--r--infra/cifuzz/build_fuzzers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/cifuzz/build_fuzzers.py b/infra/cifuzz/build_fuzzers.py
index 6b6d78658..6722be5e9 100644
--- a/infra/cifuzz/build_fuzzers.py
+++ b/infra/cifuzz/build_fuzzers.py
@@ -80,7 +80,8 @@ class Builder: # pylint: disable=too-many-instance-attributes
"""Moves the source code we want to fuzz into the project builder and builds
the fuzzers from that source code. Returns True on success."""
docker_args, docker_container = docker.get_base_docker_run_args(
- self.workspace, self.config.sanitizer, self.config.language)
+ self.workspace, self.config.sanitizer, self.config.language,
+ self.config.docker_in_docker)
if not docker_container:
docker_args.extend(
_get_docker_build_fuzzers_args_not_container(self.host_repo_path))