From 2945559b44242b8c12181934172dc8c3d21c8a45 Mon Sep 17 00:00:00 2001 From: PenziiAnastasiia Date: Tue, 26 Mar 2024 20:06:05 +0200 Subject: [PATCH] add jenkinsfile --- Jenkinsfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..d006689 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,34 @@ +pipeline { + agent any + + stages { + stage('Checkout') { + steps { + 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" + } + } + } + + post { + 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