From df1062c76669846e08e4a9f49edb895304ad673d Mon Sep 17 00:00:00 2001 From: Alina Date: Fri, 5 Apr 2024 20:16:04 +0300 Subject: [PATCH] Update JenkinsFile --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1cefb09..cb4a5d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { stages { stage('Checkout') { steps { - git url: 'add here your url', credentialsId: 'add credentialsId' + git url: 'https://git.comsys.kpi.ua/student012/lab4', credentialsId: '24b4827c-1e07-421a-999c-bd3bc7057c51' } } @@ -12,7 +12,7 @@ pipeline { steps { // Крок для збірки проекту з Visual Studio // Встановіть правильні шляхи до рішення/проекту та параметри MSBuild - bat '"path to MSBuild" test_repos.sln /t:Build /p:Configuration=Release' + bat '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" test_repos.sln /t:Build /p:Configuration=Release' } } @@ -28,6 +28,7 @@ pipeline { always { // Publish test results using the junit step // Specify the path to the XML test result files + junit 'test_report.xml' } } } \ No newline at end of file