From 71da138886a3e35cfeb8d52673c92c0373642bc3 Mon Sep 17 00:00:00 2001 From: PenziiAnastasiia Date: Tue, 26 Mar 2024 21:01:18 +0200 Subject: [PATCH] fix jenkinsfile --- Jenkinsfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7aefe40..02397ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,19 +7,16 @@ pipeline { git url: 'https://git.comsys.kpi.ua/student077/lab4.git', credentialsId: 'jenkins_access' } } - + stage('Build') { steps { - // Крок для збірки проекту з Visual Studio - // Встановіть правильні шляхи до рішення/проекту та параметри MSBuild bat '"D:\\Install\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" IT-management-lab4.sln /t:Build /p:Configuration=Release' } } stage('Test') { steps { - // Команди для запуску тестів - bat "x64\\Debug\\test_repos.exe --gtest_output=xml:test_report.xml" + bat "x64\\Debug\\IT-management-lab4.exe --gtest_output=xml:test_report.xml" } } } @@ -31,4 +28,4 @@ pipeline { junit 'test_report.xml' } } -} \ No newline at end of file +}