File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -70,16 +70,17 @@ pipeline {
70
70
}
71
71
stage(' Frontend' ) {
72
72
steps {
73
- script {
74
- def shStatusCode = sh(label : ' build-frontend' , returnStatus : true , script : '''
75
- set -e
76
- ./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
77
- ''' )
78
- shOutput = readFile " ${ env.WORKSPACE} /tmp-sh-build"
79
- if (shStatusCode != 0 ) {
80
- error " ${ shOutput} "
81
- }
82
- }
73
+ sh ' ./scripts/ci/build-frontend'
74
+ // script {
75
+ // def shStatusCode = sh(label: 'build-frontend', returnStatus: true, script: '''
76
+ // set -e
77
+ // ./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
78
+ // ''')
79
+ // shOutput = readFile "${env.WORKSPACE}/tmp-sh-build"
80
+ // if (shStatusCode != 0) {
81
+ // error "${shOutput}"
82
+ // }
83
+ // }
83
84
}
84
85
post {
85
86
always {
You can’t perform that action at this time.
0 commit comments