From 549e9fdd09c56325650dcbc9078fddc5837e1a64 Mon Sep 17 00:00:00 2001 From: vijaypunugubati Date: Thu, 22 Aug 2019 11:16:20 -0400 Subject: [PATCH] Remove AnsiColor wrapper in Fabric Samples FABCI-402 #done Signed-off-by: vijaypunugubati Change-Id: Ie4ee8c1eecc63d959b2a8d188d737c5b03face67 --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d473b31b..029405d3 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 } - } + // } } } } @@ -141,7 +141,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 @@ -153,7 +153,7 @@ currentBuild.result = 'FAILURE' throw err } - } + // } } } }