@@ -18,7 +18,7 @@ pipeline {
1818 label ' docker-multiarch'
1919 }
2020 options {
21- buildDiscarder(logRotator(numToKeepStr : ' 5 ' ))
21+ buildDiscarder(logRotator(numToKeepStr : ' 10 ' ))
2222 disableConcurrentBuilds()
2323 ansiColor(' xterm' )
2424 }
@@ -71,7 +71,8 @@ pipeline {
7171 steps {
7272 sh ' ./scripts/ci/build-frontend'
7373 sh ' ./scripts/ci/test-backend'
74- sh ' ./scripts/ci/build-backend'
74+ // Temporarily disable building backend binaries
75+ // sh './scripts/ci/build-backend'
7576 // Build the docker image used for testing below
7677 sh ''' docker build --pull --no-cache \\
7778 -t "${IMAGE}:${BRANCH_LOWER}-ci-${BUILD_NUMBER}" \\
@@ -84,12 +85,13 @@ pipeline {
8485 }
8586 post {
8687 success {
87- archiveArtifacts allowEmptyArchive : false , artifacts : ' bin/*'
88+ junit ' test/results/junit/*'
89+ // archiveArtifacts allowEmptyArchive: false, artifacts: 'bin/*'
8890 publishHTML([
8991 allowMissing : false ,
9092 alwaysLinkToLastBuild : false ,
9193 keepAll : false ,
92- reportDir : ' html-reports' ,
94+ reportDir : ' test/results/ html-reports' ,
9395 reportFiles : ' backend-coverage.html' ,
9496 reportName : ' HTML Reports' ,
9597 useWrapperFileDirectly : true
0 commit comments