From 3ffe0a9f5a863c9647279167f94076d878683622 Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Sun, 17 May 2020 20:39:00 -0700 Subject: [PATCH] Add FUZZING_LANGUAGE to build step. (#3835) --- infra/gcb/build_lib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/gcb/build_lib.py b/infra/gcb/build_lib.py index 0fe22bbd9..2c1e71b0c 100644 --- a/infra/gcb/build_lib.py +++ b/infra/gcb/build_lib.py @@ -184,6 +184,7 @@ def project_image_steps(name, image, language): '.', ], 'dir': 'oss-fuzz/projects/' + name, + 'env': ['FUZZING_LANGUAGE=%s' % language], }, { 'name': image,