From 8396d43811f28b079a9d391aaf6701a4455abbfd Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 6 Sep 2017 23:23:15 +0800 Subject: send a few more variables to distinguish our jobs in codecov (#3892) * send a few more variables to distinguish our jobs in codecov * put the labels in the right places --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cc53da33..b79a407b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -248,7 +248,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) { call .codecov/Scripts/activate pip install coverage==4.3.4 pip install codecov - codecov -e JOB_BASE_NAME,LABEL + codecov -e JOB_BASE_NAME,LABEL,TOXENV """ } else if (label.contains("sierra") || label.contains("yosemite")) { ansiColor { @@ -265,7 +265,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) { virtualenv .venv source .venv/bin/activate pip install coverage==4.3.4 - bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL + bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL,TOXENV """ } } else { @@ -284,7 +284,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) { virtualenv .venv source .venv/bin/activate pip install coverage==4.3.4 - bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL + bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL,TOXENV,IMAGE_NAME """ } if (artifacts) { -- cgit v1.2.3