summaryrefslogtreecommitdiff
path: root/post-build-report.py
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2016-06-20 13:47:55 +0100
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2016-06-20 13:47:55 +0100
commit81f7e76292f828bf69b749d28997784621b7ac68 (patch)
treef18a0c10427579496af634afae70e91b997404ca /post-build-report.py
parent19903804249c0a57ac9ca56e33a2589eda12f0ea (diff)
Added debugging output
Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
Diffstat (limited to 'post-build-report.py')
-rw-r--r--post-build-report.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/post-build-report.py b/post-build-report.py
index 0cb6e8c..0ffc56f 100644
--- a/post-build-report.py
+++ b/post-build-report.py
@@ -111,6 +111,10 @@ def _results(workspace_path):
if __name__ == '__main__':
+ for root, dirs, files in os.walk('.'):
+ print root
+ for f in files:
+ print join(root, f)
jenkins_project_name = os.environ.get("SOURCE_PROJECT_NAME")
jenkins_build_number = os.environ.get("SOURCE_BUILD_NUMBER")