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.

34 lines
1.1 KiB

8 months ago
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git url: 'https://git.comsys.kpi.ua/student010/lab4', credentialsId: '3a35fe64-13f3-4726-a37e-28fa64baac4f'
8 months ago
}
}
stage('Build') {
steps {
// Крок для збірки проекту з Visual Studio
// Встановіть правильні шляхи до рішення/проекту та параметри MSBuild
bat '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" test_repos.sln /p:Platform=x64 /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.22621.0'
8 months ago
}
}
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'
8 months ago
}
}
}