Skip to content

Commit

Permalink
post junit tests in testing stage
Browse files Browse the repository at this point in the history
  • Loading branch information
maknop committed Dec 5, 2023
1 parent 37e11f9 commit 65becca
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,18 @@ pipeline {
"""
}
}

post {
always {
junit skipPublishingChecks: true, testResults: 'artifacts/junit-*.xml'
}
}
}
}

post {
failure {
sh '''
source ./ci/functions.sh
make_results_xml
'''
}
always {
archiveArtifacts artifacts: 'artifacts/**/*', fingerprint: true
junit skipPublishingChecks: true, testResults: 'artifacts/junit-*.xml'
}
}
}

0 comments on commit 65becca

Please sign in to comment.