|
@ -7,19 +7,16 @@ pipeline { |
|
|
git url: 'https://git.comsys.kpi.ua/student077/lab4.git', credentialsId: 'jenkins_access' |
|
|
git url: 'https://git.comsys.kpi.ua/student077/lab4.git', credentialsId: 'jenkins_access' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
stage('Build') { |
|
|
stage('Build') { |
|
|
steps { |
|
|
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' |
|
|
bat '"D:\\Install\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" IT-management-lab4.sln /t:Build /p:Configuration=Release' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
stage('Test') { |
|
|
stage('Test') { |
|
|
steps { |
|
|
steps { |
|
|
// Команди для запуску тестів |
|
|
bat "x64\\Debug\\IT-management-lab4.exe --gtest_output=xml:test_report.xml" |
|
|
bat "x64\\Debug\\test_repos.exe --gtest_output=xml:test_report.xml" |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -31,4 +28,4 @@ pipeline { |
|
|
junit 'test_report.xml' |
|
|
junit 'test_report.xml' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|