Skip to content

Commit

Permalink
test eclipse-release profile
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <[email protected]>
  • Loading branch information
olamy committed Dec 12, 2023
1 parent 286cd4c commit 4962bbc
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,7 @@ pipeline {
agent { node { label 'linux' } }
options { timeout( time: 120, unit: 'MINUTES' ) }
steps {
mavenBuild( "jdk11", "clean install javadoc:jar" )
// Collect up the jacoco execution results
jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class',
exclusionPattern: '',
execPattern: '**/target/jacoco.exec',
classPattern: '**/target/classes',
sourcePattern: '**/src/main/java'
mavenBuild( "jdk11", "clean install -Peclipse-release -Dgpg.skip" )
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
script {
if (env.BRANCH_NAME == 'apache-11.0.x' ||
Expand All @@ -37,14 +31,14 @@ pipeline {
agent { node { label 'linux' } }
options { timeout( time: 120, unit: 'MINUTES' ) }
steps {
mavenBuild( "jdk17", "clean install" )
mavenBuild( "jdk17", "clean install -Peclipse-release -Dgpg.skip" )
}
}
stage( "Build / Test - JDK21" ) {
agent { node { label 'linux' } }
options { timeout( time: 120, unit: 'MINUTES' ) }
steps {
mavenBuild( "jdk21", "clean install" )
mavenBuild( "jdk21", "clean install -Peclipse-release -Dgpg.skip" )
}
}
}
Expand Down

0 comments on commit 4962bbc

Please sign in to comment.