aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/build_fuzzers_entrypoint.py
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-10-04 11:21:28 -0400
committerGitHub <noreply@github.com>2021-10-04 15:21:28 +0000
commit1d588e62cdc119f676316fbcab13cc331c7fb08c (patch)
treea5426da750e24390d72d9f93523ea90ee7b6e923 /infra/cifuzz/build_fuzzers_entrypoint.py
parentc625dcb3abcb4815192d9ebccd4945bc098f7da5 (diff)
downloadoss-fuzz-1d588e62cdc119f676316fbcab13cc331c7fb08c.tar.gz
clusterfuzzlite: Upload builds after bad build check. (#6531)
Fixes: #6525 Depends on: #6530
Diffstat (limited to 'infra/cifuzz/build_fuzzers_entrypoint.py')
-rw-r--r--infra/cifuzz/build_fuzzers_entrypoint.py9
1 files changed, 1 insertions, 8 deletions
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():