summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-30 03:28:10 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-01 16:39:12 +0200
commit8334564c1e4fd484a5c1a4758fb34e6022312ac8 (patch)
tree0238f1327b1bbec8efef1c7bab5a2715276669ca /bin/reproducible_common.py
parent03480336a8402a09d8cafff8ebaa203f91bb6043 (diff)
downloadjenkins.debian.net-8334564c1e4fd484a5c1a4758fb34e6022312ac8.tar.xz
reproducible: common: add LOGS_URI and LOGS_PATH, poiting at /logs
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 4d38d946..29d77271 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -42,12 +42,14 @@ REPRODUCIBLE_JSON = BASE + '/reproducible.json'
REPRODUCIBLE_DB = '/var/lib/jenkins/reproducible.db'
DBD_URI = '/dbd'
+LOGS_URI = '/logs'
NOTES_URI = '/notes'
ISSUES_URI = '/issues'
RB_PKG_URI = '/rb-pkg'
RBUILD_URI = '/rbuild'
BUILDINFO_URI = '/buildinfo'
DBD_PATH = BASE + DBD_URI
+LOGS_PATH = BASE + LOGS_URI
NOTES_PATH = BASE + NOTES_URI
ISSUES_PATH = BASE + ISSUES_URI
RB_PKG_PATH = BASE + RB_PKG_URI
@@ -79,6 +81,8 @@ log.debug("BIN_PATH:\t" + BIN_PATH)
log.debug("BASE:\t\t" + BASE)
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("NOTES_URI:\t" + NOTES_URI)
log.debug("ISSUES_URI:\t" + ISSUES_URI)
log.debug("NOTES_PATH:\t" + NOTES_PATH)