Skip to content

Commit 7745f82

Browse files
committed
Debug ci
1 parent 00aaa02 commit 7745f82

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

Jenkinsfile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,17 @@ pipeline {
7070
}
7171
stage('Frontend') {
7272
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+
// }
8384
}
8485
post {
8586
always {

0 commit comments

Comments
 (0)