pipeline { agent any stages { stage('Checkout') { steps { git url: 'https://git.comsys.kpi.ua/student012/lab4', credentialsId: '24b4827c-1e07-421a-999c-bd3bc7057c51' } } stage('Build') { steps { // Крок для збірки проекту з Visual Studio // Встановіть правильні шляхи до рішення/проекту та параметри MSBuild bat '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" test_repos.sln /t:Build /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.22621.0' } } stage('Test') { steps { // Команди для запуску тестів bat "x64\\Debug\\test_repos.exe --gtest_output=xml:test_report.xml" } } } post { always { // Publish test results using the junit step // Specify the path to the XML test result files junit 'test_report.xml' } } }