[Libreoffice-commits] dev-tools.git: esc-reporting/esc-collect.py

jan Iversen jani at libreoffice.org
Sun May 7 09:03:20 UTC 2017


 esc-reporting/esc-collect.py |   30 ++++++++++++++++++++++++------
 1 file changed, 24 insertions(+), 6 deletions(-)

New commits:
commit fdcbe4abc89988a27308b45c0df1c8bbab9452dc
Author: jan Iversen <jani at libreoffice.org>
Date:   Sun May 7 11:02:59 2017 +0200

    esc-report, make collecting resiliant to failures

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index 8315bc3..434f24f 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -722,12 +722,30 @@ def runCfg(platform):
 
 
 def runBuild(cfg):
-    crashData = get_crash(cfg)
-    openhubData = get_openhub(cfg)
-    bugzillaData = get_bugzilla(cfg)
-    ESCData = get_esc_bugzilla(cfg)
-    gerritData = get_gerrit(cfg)
-    gitData = get_git(cfg)
+    try:
+      crashData = get_crash(cfg)
+    except:
+      pass
+    try:
+      openhubData = get_openhub(cfg)
+    except:
+      pass
+    try:
+      bugzillaData = get_bugzilla(cfg)
+    except:
+      pass
+    try:
+      ESCData = get_esc_bugzilla(cfg)
+    except:
+      pass
+    try:
+      gerritData = get_gerrit(cfg)
+    except:
+      pass
+    try:
+      gitData = get_git(cfg)
+    except:
+      pass
 
 
 


More information about the Libreoffice-commits mailing list