aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-09-06 23:23:15 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-09-06 11:23:15 -0400
commit8396d43811f28b079a9d391aaf6701a4455abbfd (patch)
treeac69595216f354328d324175c1da9f263e16b22e /Jenkinsfile
parent10041cd9945ed33fd96788f5c620a58993d3926a (diff)
downloadcryptography-8396d43811f28b079a9d391aaf6701a4455abbfd.tar.gz
cryptography-8396d43811f28b079a9d391aaf6701a4455abbfd.tar.bz2
cryptography-8396d43811f28b079a9d391aaf6701a4455abbfd.zip
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
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile6
1 files 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) {