Skip to content

Commit

Permalink
fix heap space issue when archiving artifacts in prod nightly (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgdoliveira authored May 3, 2024
1 parent 85cc11d commit 093f938
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .ci/jenkins/Jenkinsfile.prod.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -301,13 +301,8 @@ pipeline {
'Please look here: ${BUILD_URL}', subject: 'OPENSHIFT SERVERLESS LOGIC ${PRODUCT_VERSION}:nightly-build #${BUILD_NUMBER}: ' + "${currentBuild.currentResult}", to: '[email protected]'
}
always {
archiveArtifacts artifacts: '**/*.maven.log', fingerprint: false, defaultExcludes: true, caseSensitive: true, allowEmptyArchive: true

echo 'Generating JUnit report...'
junit allowEmptyResults: true, healthScaleFactor: 1.0, testResults: '**/target/*-reports/TEST-*.xml'

echo 'Archiving logs...'
archiveArtifacts excludes: '**/target/checkstyle.log', artifacts: '**/*.maven.log,**/target/*.log', fingerprint: false, defaultExcludes: true, caseSensitive: true, allowEmptyArchive: true
echo 'Archiving maven logs...'
archiveArtifacts artifacts: '*.maven.log', fingerprint: false, defaultExcludes: true, caseSensitive: true, allowEmptyArchive: true
}
cleanup {
cleanWs()
Expand Down

0 comments on commit 093f938

Please sign in to comment.