aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/helper.py')
-rwxr-xr-xinfra/helper.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/infra/helper.py b/infra/helper.py
index e83655a2..ce0f572a 100755
--- a/infra/helper.py
+++ b/infra/helper.py
@@ -40,10 +40,11 @@ BASE_IMAGES = [
'gcr.io/oss-fuzz-base/base-clang',
'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-python',
'gcr.io/oss-fuzz-base/base-builder-go',
'gcr.io/oss-fuzz-base/base-builder-jvm',
+ 'gcr.io/oss-fuzz-base/base-builder-python',
+ 'gcr.io/oss-fuzz-base/base-builder-rust',
+ 'gcr.io/oss-fuzz-base/base-builder-swift',
'gcr.io/oss-fuzz-base/base-runner',
'gcr.io/oss-fuzz-base/base-runner-debug',
'gcr.io/oss-fuzz-base/base-sanitizer-libs-builder',
@@ -64,7 +65,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', 'python', 'jvm', 'go'}
+LANGUAGES_WITH_BUILDER_IMAGES = {'go', 'jvm', 'python', 'rust', 'swift'}
if sys.version_info[0] >= 3:
raw_input = input # pylint: disable=invalid-name