Remove AnsiColor wrapper in Fabric Samples

FABCI-402 #done

Signed-off-by: vijaypunugubati <vijaypunugubati@gmail.com>
Change-Id: Ie4ee8c1eecc63d959b2a8d188d737c5b03face67
This commit is contained in:
vijaypunugubati 2019-08-22 11:16:20 -04:00
parent fc5975b285
commit 549e9fdd09

12
Jenkinsfile vendored
View file

@ -99,7 +99,7 @@
steps { steps {
script { script {
// making the output color coded // making the output color coded
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { // wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try { try {
dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") { dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") {
// Run BYFN, EYFN tests // Run BYFN, EYFN tests
@ -111,7 +111,7 @@
currentBuild.result = 'FAILURE' currentBuild.result = 'FAILURE'
throw err throw err
} }
} // }
} }
} }
} }
@ -120,7 +120,7 @@
steps { steps {
script { script {
// making the output color coded // making the output color coded
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { // wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try { try {
dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") { dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") {
// Run fabcar tests // Run fabcar tests
@ -132,7 +132,7 @@
currentBuild.result = 'FAILURE' currentBuild.result = 'FAILURE'
throw err throw err
} }
} // }
} }
} }
} }
@ -141,7 +141,7 @@
steps { steps {
script { script {
// making the output color coded // making the output color coded
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) { // wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try { try {
dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") { dir("$ROOTDIR/$BASE_DIR/scripts/ci_scripts") {
// Run fabcar tests // Run fabcar tests
@ -153,7 +153,7 @@
currentBuild.result = 'FAILURE' currentBuild.result = 'FAILURE'
throw err throw err
} }
} // }
} }
} }
} }