From 1d588e62cdc119f676316fbcab13cc331c7fb08c Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Mon, 4 Oct 2021 11:21:28 -0400 Subject: clusterfuzzlite: Upload builds after bad build check. (#6531) Fixes: #6525 Depends on: #6530 --- infra/cifuzz/build_fuzzers_entrypoint.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'infra/cifuzz/build_fuzzers_entrypoint.py') diff --git a/infra/cifuzz/build_fuzzers_entrypoint.py b/infra/cifuzz/build_fuzzers_entrypoint.py index c128ae937..e8e368f1b 100644 --- a/infra/cifuzz/build_fuzzers_entrypoint.py +++ b/infra/cifuzz/build_fuzzers_entrypoint.py @@ -42,14 +42,7 @@ def build_fuzzers_entrypoint(): config.commit_sha, config.pr_ref) return returncode - if not config.bad_build_check: - # If we've gotten to this point and we don't need to do bad_build_check, - # then the build has succeeded. - returncode = 0 - elif build_fuzzers.check_fuzzer_build(config): - returncode = 0 - - return returncode + return 0 def main(): -- cgit v1.2.3