aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-10-31 20:26:59 -0400
committerGravatar GitHub <noreply@github.com>2021-11-01 11:26:59 +1100
commit4fd64a37929bcef07dd9410e88e6d0651c83f45c (patch)
tree787dcff794255a3341299eb76666cde56e73e6e5 /infra
parent459217ef10ccfd2a64ba0a44e32c7d3cd7994abd (diff)
[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
Diffstat (limited to 'infra')
-rw-r--r--infra/cifuzz/build_fuzzers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/cifuzz/build_fuzzers.py b/infra/cifuzz/build_fuzzers.py
index 224cceae..58f60f7d 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():