aboutsummaryrefslogtreecommitdiff
path: root/infra/build_specified_commit.py
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2020-12-07 10:50:11 -0800
committerGitHub <noreply@github.com>2020-12-07 10:50:11 -0800
commitb0b99d5ccdf5e2e49cfe3138fbcf64e6fef6ea7f (patch)
tree4afa704c82330c785a468ecfe5097314e7b06365 /infra/build_specified_commit.py
parenta24cebec02a0c97247bef31963d5f5fadbaa4ebf (diff)
downloadoss-fuzz-b0b99d5ccdf5e2e49cfe3138fbcf64e6fef6ea7f.tar.gz
Cifuzz external build (#4656)
* Support building fuzzers for projects outside of OSS-Fuzz * Use retry wrapper * Fix some tests.
Diffstat (limited to 'infra/build_specified_commit.py')
-rw-r--r--infra/build_specified_commit.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/infra/build_specified_commit.py b/infra/build_specified_commit.py
index 6c3e3cc23..a4ff70f7a 100644
--- a/infra/build_specified_commit.py
+++ b/infra/build_specified_commit.py
@@ -143,8 +143,7 @@ def copy_src_from_docker(project_name, host_dir):
return src_dir
-@retry.wrap(_IMAGE_BUILD_TRIES, 2,
- 'infra.build_specified_commit._build_image_with_retries')
+@retry.wrap(_IMAGE_BUILD_TRIES, 2)
def _build_image_with_retries(project_name):
"""Build image with retries."""
return helper.build_image_impl(project_name)