From 40489afbfcef27cbf272701572a5c2582104f95d Mon Sep 17 00:00:00 2001
From: Anthony Lamping <lamping.ap@gmail.com>
Date: Mon, 15 Oct 2018 17:39:59 -0400
Subject: [PATCH] jenkins: don't let ecl analysis script fail the SITL test

---
 .ci/Jenkinsfile-SITL_tests | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.ci/Jenkinsfile-SITL_tests b/.ci/Jenkinsfile-SITL_tests
index a56ca80ea2..ab96c2706c 100644
--- a/.ci/Jenkinsfile-SITL_tests
+++ b/.ci/Jenkinsfile-SITL_tests
@@ -244,7 +244,8 @@ def createTestNode(Map test_def) {
               } catch (exc) {
                 // save log analysis artifacts for debugging
                 archiveArtifacts(allowEmptyArchive: false, artifacts: '.ros/**/*.pdf, .ros/**/*.csv')
-                test_ok = false
+                // FIXME: don't let the script to fail the build
+                // test_ok = false
               }
 
               // upload log to flight review (https://logs.px4.io/) with python code coverage
@@ -260,7 +261,8 @@ def createTestNode(Map test_def) {
             } catch (exc) {
               // save log analysis artifacts for debugging
               archiveArtifacts(allowEmptyArchive: false, artifacts: '.ros/**/*.pdf, .ros/**/*.csv')
-              test_ok = false
+              // FIXME: don't let the script to fail the build
+              // test_ok = false
             }
 
             // upload log to flight review (https://logs.px4.io/)
-- 
GitLab