aboutsummaryrefslogtreecommitdiff
path: root/infra/gcb/build_project.py
diff options
context:
space:
mode:
authorMax Moroz <mmoroz@chromium.org>2020-01-30 15:36:44 -0800
committerGitHub <noreply@github.com>2020-01-30 15:36:44 -0800
commit7751ab5a87907ec971beace9d4d139aaab6287cf (patch)
tree8e13cdaa566f4ae3d6915ae7ffdf38d8e95b9b56 /infra/gcb/build_project.py
parent1405af8d0ae702576d13b9659d95cb84d6b7e03e (diff)
downloadoss-fuzz-7751ab5a87907ec971beace9d4d139aaab6287cf.tar.gz
[infra] Introduce "language" attribute in the project.yaml (#3297). (#3299)
* [infra] Introduce "language" attribute in the project.yaml (#3297). * follow up * enable the attribute for more projects * trailing newline
Diffstat (limited to 'infra/gcb/build_project.py')
-rw-r--r--infra/gcb/build_project.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/gcb/build_project.py b/infra/gcb/build_project.py
index 569c7dbe4..f45b0996a 100644
--- a/infra/gcb/build_project.py
+++ b/infra/gcb/build_project.py
@@ -58,6 +58,7 @@ def load_project_yaml(project_dir):
project_yaml.setdefault('run_tests', True)
project_yaml.setdefault('coverage_extra_args', '')
project_yaml.setdefault('labels', {})
+ project_yaml.setdefault('language', 'cpp')
return project_yaml