diff --git a/Jenkinsfile b/Jenkinsfile index c64e6de..ddc040c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,12 +20,12 @@ pipeline { steps { bat '"x64\\Debug\\test_repos.exe" --gtest_output="xml:x64/Debug/"' } - } - stage('Publish Test Results') { - steps { - junit 'test_report.xml' - } - } - + }} + + post { + always { + // Publish test results using the junit step + junit 'test_report.xml' // Specify the path to the XML test result files } +} } \ No newline at end of file