From 398a5b1a1d3c354d9293f0513256732d436d6400 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Mon, 19 Aug 2019 18:45:05 -0400 Subject: [PATCH] [FABCI-394] Remove AnsiColor Wrapper Signed-off-by: Brett Logan Change-Id: I51158ccf006ec7be9c0b4506a4902f023c845a16 --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21965e5413..59c64a95d1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -99,7 +99,7 @@ steps { script { // making the output color coded - wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { + // wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { try { dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") { // Run BYFN, EYFN tests @@ -111,7 +111,7 @@ currentBuild.result = 'FAILURE' throw err } - } + // } } } } @@ -120,7 +120,7 @@ steps { script { // making the output color coded - wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { + // wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { try { dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") { // Run fabcar tests @@ -132,7 +132,7 @@ currentBuild.result = 'FAILURE' throw err } - } + // } } } }