aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper.py
diff options
context:
space:
mode:
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