From 4fd64a37929bcef07dd9410e88e6d0651c83f45c Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Sun, 31 Oct 2021 20:26:59 -0400 Subject: [PATCH] [clusterfuzzlite] Upload builds after doing bad build check (#6712) Builds shouldn't be uploaded if the check fails. Fixes: https://github.com/google/oss-fuzz/issues/6667 --- infra/cifuzz/build_fuzzers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/cifuzz/build_fuzzers.py b/infra/cifuzz/build_fuzzers.py index 224cceaed..58f60f7de 100644 --- a/infra/cifuzz/build_fuzzers.py +++ b/infra/cifuzz/build_fuzzers.py @@ -127,8 +127,8 @@ class Builder: # pylint: disable=too-many-instance-attributes self.build_image_and_checkout_src, self.build_fuzzers, self.remove_unaffected_fuzz_targets, - self.check_fuzzer_build, self.upload_build, + self.check_fuzzer_build, ] for method in methods: if not method():