aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/build_fuzzers_entrypoint.py
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-02-19 11:54:15 -0800
committerGitHub <noreply@github.com>2021-02-19 11:54:15 -0800
commit28b35e36fea5284c45f56d92e06153cc5b502945 (patch)
tree5c591387c20e1ea129a74fd8070ef4b9711f1e65 /infra/cifuzz/build_fuzzers_entrypoint.py
parentbf0720d322057c505eb462bab697d874e27e5e98 (diff)
downloadoss-fuzz-28b35e36fea5284c45f56d92e06153cc5b502945.tar.gz
[CIFuzz] Support languages non-C++ projects (e.g. Python projects) (#5222)
Allow use of non-C++ projects by specifying the language in the workflow file. Fixes #5195
Diffstat (limited to 'infra/cifuzz/build_fuzzers_entrypoint.py')
-rw-r--r--infra/cifuzz/build_fuzzers_entrypoint.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/cifuzz/build_fuzzers_entrypoint.py b/infra/cifuzz/build_fuzzers_entrypoint.py
index 9c4b98215..ddae68197 100644
--- a/infra/cifuzz/build_fuzzers_entrypoint.py
+++ b/infra/cifuzz/build_fuzzers_entrypoint.py
@@ -75,7 +75,8 @@ def main():
# yapf: disable
if build_fuzzers.check_fuzzer_build(
out_dir,
- sanitizer=config.sanitizer,
+ config.sanitizer,
+ config.language,
allowed_broken_targets_percentage=config.allowed_broken_targets_percentage
):
# yapf: enable