diff options
author | Paul J. Davis <paul.joseph.davis@gmail.com> | 2020-01-09 11:38:44 -0600 |
---|---|---|
committer | Paul J. Davis <paul.joseph.davis@gmail.com> | 2020-01-09 12:51:18 -0600 |
commit | 2f9501a765e22e6429e644eb783e6ea827d59daa (patch) | |
tree | 4a93c925ca3bf43d34c4ca8af19f1fcb16fe54d2 /build-aux | |
parent | 91654ae63ab0d3fe2e4291cc10f27076d154e1a5 (diff) | |
download | couchdb-2f9501a765e22e6429e644eb783e6ea827d59daa.tar.gz |
Prevent the elision of `jenkins` in log URLs
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/logfile-uploader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/logfile-uploader.py b/build-aux/logfile-uploader.py index 6fa56da98..148704cee 100755 --- a/build-aux/logfile-uploader.py +++ b/build-aux/logfile-uploader.py @@ -65,7 +65,7 @@ def build_ci_doc(): doc["commit"] = os.environ["TRAVIS_COMMIT"] doc["repo"] = "https://github.com/" + os.environ["TRAVIS_REPO_SLUG"] elif "JENKINS_URL" in os.environ: - doc["builder"] = "jenkins" + doc["builder"] = "jenk-ins" doc["build_id"] = os.environ["BUILD_NUMBER"] doc["url"] = os.environ["BUILD_URL"] doc["branch"] = os.environ["BRANCH_NAME"] |