From 5b4a545ea2eed3cf92d535e0a750ce8cf2c3de68 Mon Sep 17 00:00:00 2001 From: Dmytro Date: Fri, 8 Nov 2024 19:16:04 -0800 Subject: [PATCH] qwerty --- Jenkinsfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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