Updating Jenkinsfile-msvc2017

This commit is contained in:
klayoutmatthias 2022-12-17 23:59:19 +01:00
parent 5731c36a35
commit 43c07e9de3
1 changed files with 5 additions and 11 deletions

View File

@ -22,10 +22,8 @@ node("master") {
stage("Building target ${target}") {
withDockerContainer(image: "jenkins-${target}") {
// from shared library
build(target, target_dir)
}
}
@ -43,19 +41,15 @@ node("master") {
"Unit testing": {
ut_result = "no-result"
withDockerContainer(image: "jenkins-${target}") {
ut_result = run_ut(target)
}
junit(testResults: ut_result)
},
"Installtest": {
withDockerContainer(image: "jenkins-${target}-basic") {
// from shared library
installtest(target, target_dir)
}
})