Strip colors in CI error outputs
This commit is contained in:
parent
471ffa8dff
commit
e959e54dc8
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -73,7 +73,7 @@ pipeline {
|
|||
script {
|
||||
def shStatusCode = sh(label: 'build-frontend', returnStatus: true, script: '''
|
||||
set -e
|
||||
./scripts/ci/build-frontend > ${WORKSPACE}/tmp-sh-build 2>&1
|
||||
./scripts/ci/build-frontend | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
|
||||
''')
|
||||
shOutput = readFile "${env.WORKSPACE}/tmp-sh-build"
|
||||
if (shStatusCode != 0) {
|
||||
|
@ -104,7 +104,7 @@ pipeline {
|
|||
script {
|
||||
def shStatusCode = sh(label: 'test-backend', returnStatus: true, script: '''
|
||||
set -e
|
||||
./scripts/ci/test-backend > ${WORKSPACE}/tmp-sh-build 2>&1
|
||||
./scripts/ci/test-backend | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
|
||||
''')
|
||||
shOutput = readFile "${env.WORKSPACE}/tmp-sh-build"
|
||||
if (shStatusCode != 0) {
|
||||
|
|
Loading…
Reference in a new issue