mirror of https://github.com/KLayout/klayout.git
Updating Jenkinsfile-msvc2017
This commit is contained in:
parent
5731c36a35
commit
43c07e9de3
|
|
@ -22,10 +22,8 @@ node("master") {
|
||||||
|
|
||||||
stage("Building target ${target}") {
|
stage("Building target ${target}") {
|
||||||
|
|
||||||
withDockerContainer(image: "jenkins-${target}") {
|
// from shared library
|
||||||
// from shared library
|
build(target, target_dir)
|
||||||
build(target, target_dir)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -43,19 +41,15 @@ node("master") {
|
||||||
"Unit testing": {
|
"Unit testing": {
|
||||||
|
|
||||||
ut_result = "no-result"
|
ut_result = "no-result"
|
||||||
withDockerContainer(image: "jenkins-${target}") {
|
ut_result = run_ut(target)
|
||||||
ut_result = run_ut(target)
|
|
||||||
}
|
|
||||||
|
|
||||||
junit(testResults: ut_result)
|
junit(testResults: ut_result)
|
||||||
|
|
||||||
},
|
},
|
||||||
"Installtest": {
|
"Installtest": {
|
||||||
|
|
||||||
withDockerContainer(image: "jenkins-${target}-basic") {
|
// from shared library
|
||||||
// from shared library
|
installtest(target, target_dir)
|
||||||
installtest(target, target_dir)
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue