@@ -18,7 +18,7 @@ pipeline {
18
18
label ' docker-multiarch'
19
19
}
20
20
options {
21
- buildDiscarder(logRotator(numToKeepStr : ' 5 ' ))
21
+ buildDiscarder(logRotator(numToKeepStr : ' 10 ' ))
22
22
disableConcurrentBuilds()
23
23
ansiColor(' xterm' )
24
24
}
@@ -71,7 +71,8 @@ pipeline {
71
71
steps {
72
72
sh ' ./scripts/ci/build-frontend'
73
73
sh ' ./scripts/ci/test-backend'
74
- sh ' ./scripts/ci/build-backend'
74
+ // Temporarily disable building backend binaries
75
+ // sh './scripts/ci/build-backend'
75
76
// Build the docker image used for testing below
76
77
sh ''' docker build --pull --no-cache \\
77
78
-t "${IMAGE}:${BRANCH_LOWER}-ci-${BUILD_NUMBER}" \\
@@ -84,12 +85,13 @@ pipeline {
84
85
}
85
86
post {
86
87
success {
87
- archiveArtifacts allowEmptyArchive : false , artifacts : ' bin/*'
88
+ junit ' test/results/junit/*'
89
+ // archiveArtifacts allowEmptyArchive: false, artifacts: 'bin/*'
88
90
publishHTML([
89
91
allowMissing : false ,
90
92
alwaysLinkToLastBuild : false ,
91
93
keepAll : false ,
92
- reportDir : ' html-reports' ,
94
+ reportDir : ' test/results/ html-reports' ,
93
95
reportFiles : ' backend-coverage.html' ,
94
96
reportName : ' HTML Reports' ,
95
97
useWrapperFileDirectly : true
0 commit comments