You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
949 B
33 lines
949 B
7 months ago
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Checkout') {
|
||
|
steps {
|
||
|
git url: 'add here your url', credentialsId: 'add credentialsId'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
// Крок для збірки проекту з Visual Studio
|
||
|
// Встановіть правильні шляхи до рішення/проекту та параметри MSBuild
|
||
|
bat '"path to MSBuild" test_repos.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
|
||
|
}
|
||
|
}
|
||
|
}
|