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 {
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
}
}
// }
}
}
}