do not record same tests results multiple times

Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
This commit is contained in:
Olivier Lamy 2022-07-10 21:51:58 +10:00
parent b521fc4e7e
commit 93e2bb87a6
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -44,6 +44,7 @@ pipeline {
timeout(time: 120, unit: 'MINUTES') { timeout(time: 120, unit: 'MINUTES') {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
mavenBuild("jdk17", "clean install -f jetty-core", "maven3") mavenBuild("jdk17", "clean install -f jetty-core", "maven3")
mavenBuild("jdk17", "clean -f jetty-core", "maven3")
} }
} }
} }
@ -56,6 +57,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -f jetty-integrations", "maven3") mavenBuild("jdk17", "clean install -f jetty-integrations", "maven3")
mavenBuild("jdk17", "clean -f jetty-integrations", "maven3")
} }
} }
} }
@ -68,6 +70,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -f jetty-ee10", "maven3") mavenBuild("jdk17", "clean install -f jetty-ee10", "maven3")
mavenBuild("jdk17", "clean -f jetty-ee10", "maven3")
} }
} }
} }
@ -80,6 +83,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -f jetty-ee9", "maven3") mavenBuild("jdk17", "clean install -f jetty-ee9", "maven3")
mavenBuild("jdk17", "clean -f jetty-ee9", "maven3")
} }
} }
} }
@ -92,6 +96,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -f jetty-ee8", "maven3") mavenBuild("jdk17", "clean install -f jetty-ee8", "maven3")
mavenBuild("jdk17", "clean -f jetty-ee8", "maven3")
} }
} }
} }
@ -104,6 +109,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -pl :jetty-home", "maven3") mavenBuild("jdk17", "clean install -pl :jetty-home", "maven3")
mavenBuild("jdk17", "clean -pl :jetty-home", "maven3")
} }
} }
} }
@ -116,6 +122,7 @@ pipeline {
dir("${env.WORKSPACE}/buildy") { dir("${env.WORKSPACE}/buildy") {
//cleanup all projects //cleanup all projects
mavenBuild("jdk17", "clean install -f tests", "maven3") mavenBuild("jdk17", "clean install -f tests", "maven3")
mavenBuild("jdk17", "clean -f tests", "maven3")
} }
} }
} }