File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ pipeline {
73
73
script {
74
74
def shStatusCode = sh(label : ' build-frontend' , returnStatus : true , script : '''
75
75
set -e
76
- ./scripts/ci/build-frontend > ${WORKSPACE}/tmp-sh-build 2>&1
76
+ ./scripts/ci/build-frontend | sed -r "s/ \x 1B \[ ([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
77
77
''' )
78
78
shOutput = readFile " ${ env.WORKSPACE} /tmp-sh-build"
79
79
if (shStatusCode != 0 ) {
@@ -104,7 +104,7 @@ pipeline {
104
104
script {
105
105
def shStatusCode = sh(label : ' test-backend' , returnStatus : true , script : '''
106
106
set -e
107
- ./scripts/ci/test-backend > ${WORKSPACE}/tmp-sh-build 2>&1
107
+ ./scripts/ci/test-backend | sed -r "s/ \x 1B \[ ([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
108
108
''' )
109
109
shOutput = readFile " ${ env.WORKSPACE} /tmp-sh-build"
110
110
if (shStatusCode != 0 ) {
You can’t perform that action at this time.
0 commit comments