mirror of https://github.com/KLayout/klayout.git
Jenkinsfile updated (wrong path for junit file)
This commit is contained in:
parent
a49d1d5fbd
commit
56a359741a
|
|
@ -37,7 +37,8 @@ node("master") {
|
||||||
},
|
},
|
||||||
"Unit testing": {
|
"Unit testing": {
|
||||||
|
|
||||||
work_dir = pwd() + "/" + target + "/BUILD/build.linux-release"
|
rel_work_dir = target + "/BUILD/build.linux-release"
|
||||||
|
work_dir = pwd() + "/" + rel_work_dir
|
||||||
|
|
||||||
withDockerContainer(image: "jenkins-${target}") {
|
withDockerContainer(image: "jenkins-${target}") {
|
||||||
|
|
||||||
|
|
@ -50,7 +51,7 @@ set -e
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
junit(testResults: "${work_dir}/ut_runner.xml")
|
junit(testResults: "${rel_work_dir}/ut_runner.xml")
|
||||||
|
|
||||||
},
|
},
|
||||||
"Installtest": {
|
"Installtest": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue