From ad9b0a0d4e6fd4b461fadfde5a3a4053e0f31b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=97=D0=B0=D0=BF=D0=BE=D1=80=D0=BE=D0=B6=D1=87=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=20=D0=90=D0=BD=D0=B0=D1=81=D1=82=D0=B0=D1=81?= =?UTF-8?q?=D1=96=D1=8F=20=D0=92=D0=BE=D0=BB=D0=BE=D0=B4=D0=B8=D0=BC=D0=B8?= =?UTF-8?q?=D1=80=D1=96=D0=B2=D0=BD=D0=B0?= Date: Thu, 4 Apr 2024 12:34:02 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=BD=D0=BE=D0=B2=D0=B8=D1=82=D0=B8=20'J?= =?UTF-8?q?enkinsfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1cefb09..1b0ec64 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/student010/lab4', credentialsId: '3a35fe64-13f3-4726-a37e-28fa64baac4f' } } @@ -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