add infrastructure files to the download filter

This commit is contained in:
Yakov Olkhovskiy 2023-09-11 22:45:50 +00:00
parent eb3a7caa74
commit 44546458f0

View File

@ -214,5 +214,8 @@ def download_performance_build(check_name, reports_path, result_path):
def download_fuzzers(check_name, reports_path, result_path):
download_builds_filter(
check_name, reports_path, result_path, lambda x: x.endswith("_fuzzer")
check_name,
reports_path,
result_path,
lambda x: x.endswith(("_fuzzer", ".dict", ".options", "_seed_corpus.zip")),
)