aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper.py
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-30 06:57:23 -0700
committerGravatar GitHub <noreply@github.com>2021-08-30 06:57:23 -0700
commita4cd74a98efe1266a4bdda079770baeb7fb2059a (patch)
treea0abadc91b1ea5d9ff0900a67ab8d97e7c1504b9 /infra/helper.py
parent8520693633dcba032dd6ee9f6341a16298861610 (diff)
[go][infra] Create base-builder-go and use it to build go projects. (#6335)
Also, update base-builder-new to copy everything base-builder does
Diffstat (limited to 'infra/helper.py')
-rwxr-xr-xinfra/helper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/helper.py b/infra/helper.py
index 2f3670b3..d8964eed 100755
--- a/infra/helper.py
+++ b/infra/helper.py
@@ -41,6 +41,7 @@ BASE_IMAGES = [
'gcr.io/oss-fuzz-base/base-builder',
'gcr.io/oss-fuzz-base/base-builder-new',
'gcr.io/oss-fuzz-base/base-builder-swift',
+ 'gcr.io/oss-fuzz-base/base-builder-go',
'gcr.io/oss-fuzz-base/base-builder-jvm',
'gcr.io/oss-fuzz-base/base-runner',
'gcr.io/oss-fuzz-base/base-runner-debug',
@@ -62,7 +63,7 @@ PROJECT_LANGUAGE_REGEX = re.compile(r'\s*language\s*:\s*([^\s]+)')
WORKDIR_REGEX = re.compile(r'\s*WORKDIR\s*([^\s]+)')
-LANGUAGES_WITH_BUILDER_IMAGES = {'swift', 'jvm'}
+LANGUAGES_WITH_BUILDER_IMAGES = {'go', 'swift', 'jvm'}
if sys.version_info[0] >= 3:
raw_input = input # pylint: disable=invalid-name