Browse Source

Оновити 'Jenkinsfile'

master
  1. 5
      Jenkinsfile

5
Jenkinsfile

@ -4,7 +4,7 @@ pipeline {
stages { stages {
stage('Checkout') { stage('Checkout') {
steps { 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 { steps {
// Крок для збірки проекту з Visual Studio // Крок для збірки проекту з Visual Studio
// Встановіть правильні шляхи до рішення/проекту та параметри MSBuild // Встановіть правильні шляхи до рішення/проекту та параметри 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 { always {
// Publish test results using the junit step // Publish test results using the junit step
// Specify the path to the XML test result files // Specify the path to the XML test result files
junit 'test_report.xml'
} }
} }
} }
Loading…
Cancel
Save