Skip to content

Commit

Permalink
FABCI-398 Remove AnsiColor wrap in bc Explorer
Browse files Browse the repository at this point in the history
Removing wrapper from jenkinsfile as the plugin was
crashed in jenkins which is temporary fix.

Signed-off-by: vijaypunugubati <vijaypunugubati@gmail.com>
Change-Id: I09096840f2f01f0d61c9eefce4fb4faa35f67a69
  • Loading branch information
Vijaypunugubati authored and nekia committed Aug 28, 2019
1 parent 7318d7c commit f6ad147
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ node ('hyp-x') { // trigger build on x86_64 node
}
// clean environment and get env data
stage("Clean Environment - Get Env Info") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
// wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try {
dir("${ROOTDIR}/Jenkins_Script") {
sh './CI_Script.sh --clean_Environment --env_Info'
Expand All @@ -59,12 +59,12 @@ node ('hyp-x') { // trigger build on x86_64 node
failure_stage = "Clean Environment - Get Env Info"
throw err
}
}
// }
}

// Run npm tests
stage("NPM Tests") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
// wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try {
dir("${ROOTDIR}") {
sh '''
Expand All @@ -83,12 +83,12 @@ node ('hyp-x') { // trigger build on x86_64 node
currentBuild.result = 'FAILURE'
throw err
}
}
// }
}

// Run npm tests
stage("E2E Tests for Sanity-check") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
// wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try {
dir("${ROOTDIR}") {
sh '''
Expand All @@ -103,12 +103,12 @@ node ('hyp-x') { // trigger build on x86_64 node
currentBuild.result = 'FAILURE'
throw err
}
}
// }
}

// Run npm tests
stage("E2E Tests of GUI for Sanity-check") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
// wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
try {
dir("${ROOTDIR}") {
sh '''
Expand All @@ -122,12 +122,12 @@ node ('hyp-x') { // trigger build on x86_64 node
currentBuild.result = 'FAILURE'
throw err
}
}
// }
}

// Docs HTML Report
stage("Doc Output") {
wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
// wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'xterm']) {
dir("${ROOTDIR}") {
publishHTML([allowMissing: false,
alwaysLinkToLastBuild: true,
Expand All @@ -138,7 +138,7 @@ node ('hyp-x') { // trigger build on x86_64 node
reportName: 'Code Coverage Report'
])
}
}
// }
}
} finally {
if (env.JOB_NAME == "blockchain-explorer-merge-x86_64") {
Expand Down

0 comments on commit f6ad147

Please # to comment.