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.
31 lines
845 B
31 lines
845 B
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
git url: 'https://git.comsys.kpi.ua/huk_dmytro/babenko_test_cicd.git', credentialsId: 'access_for_jenkins'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
bat '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" test_repos.sln /p:Configuration=Release'
|
|
}
|
|
}
|
|
|
|
|
|
|
|
stage('Test') {
|
|
steps {
|
|
bat '"C:\\ProgramData\\Jenkins\\.jenkins\\workspace\\exx\\x64\\Debug\\test_repos.exe" --gtest_output="xml:x64/Debug/"'
|
|
}
|
|
}
|
|
stage('Publish Test Results') {
|
|
steps {
|
|
junit 'x64/Debug/test_repos.exe.gta.testdurations.xml'
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|