aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/build
diff options
context:
space:
mode:
authorGravatar Max Moroz <mmoroz@chromium.org>2020-11-19 16:07:35 -0800
committerGravatar GitHub <noreply@github.com>2020-11-19 16:07:35 -0800
commitb97f6e296a3366d22c3c259e70e321799b1a14d2 (patch)
treec0f32a76fb58bcfdb566ddb2970e4e9982d0cb47 /infra/build
parent217175212ba1d484017c32fe6518f85c1aa1273f (diff)
[infra] Allow coverage for Go project on GCB (#2817, #2714). (#4668)
Diffstat (limited to 'infra/build')
-rw-r--r--infra/build/functions/build_and_run_coverage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/build/functions/build_and_run_coverage.py b/infra/build/functions/build_and_run_coverage.py
index dcb2f1a0..c1b693c2 100644
--- a/infra/build/functions/build_and_run_coverage.py
+++ b/infra/build/functions/build_and_run_coverage.py
@@ -48,7 +48,7 @@ LATEST_REPORT_INFO_CONTENT_TYPE = 'application/json'
UPLOAD_URL_FORMAT = 'gs://' + COVERAGE_BUCKET_NAME + '/{project}/{type}/{date}'
# Languages from project.yaml that have code coverage support.
-LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++']
+LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++', 'go']
def usage():