diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-17 06:33:17 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-05 14:01:20 +0200 |
commit | eaf007dc31c6171c5f44da3c508dedfeb50d1a84 (patch) | |
tree | 80b7329ad8e8540dfcb8fbc3241cffe9bf2e7b55 /bin | |
parent | bc2d9468ca27630cac30f7030b623782ac949e98 (diff) | |
download | jenkins.debian.net-eaf007dc31c6171c5f44da3c508dedfeb50d1a84.tar.xz |
reproducible: common.py: add DIFFS_{URI,PATH}
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 97617f18..7e2c5f49 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -43,6 +43,7 @@ REPRODUCIBLE_DB = '/var/lib/jenkins/reproducible.db' DBD_URI = '/dbd' LOGS_URI = '/logs' +DIFFS_URI = '/logdiffs' NOTES_URI = '/notes' ISSUES_URI = '/issues' RB_PKG_URI = '/rb-pkg' @@ -50,6 +51,7 @@ RBUILD_URI = '/rbuild' BUILDINFO_URI = '/buildinfo' DBD_PATH = BASE + DBD_URI LOGS_PATH = BASE + LOGS_URI +DIFFS_PATH = BASE + DIFFS_URI NOTES_PATH = BASE + NOTES_URI ISSUES_PATH = BASE + ISSUES_URI RB_PKG_PATH = BASE + RB_PKG_URI @@ -83,6 +85,8 @@ log.debug("DBD_URI:\t\t" + DBD_URI) log.debug("DBD_PATH:\t" + DBD_PATH) log.debug("LOGS_URI:\t" + LOGS_URI) log.debug("LOGS_PATH:\t" + LOGS_PATH) +log.debug("DIFFS_URI:\t" + DIFFS_URI) +log.debug("DIFFS_PATH:\t" + DIFFS_PATH) log.debug("NOTES_URI:\t" + NOTES_URI) log.debug("ISSUES_URI:\t" + ISSUES_URI) log.debug("NOTES_PATH:\t" + NOTES_PATH) |