[FABCI-394] Remove AnsiColor Wrapper

Signed-off-by: Brett Logan <Brett.T.Logan@ibm.com>
Change-Id: I51158ccf006ec7be9c0b4506a4902f023c845a16
This commit is contained in:
Brett Logan 2019-08-19 18:45:05 -04:00 committed by Brett Logan
parent 72ecf45088
commit 398a5b1a1d

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