105 lines
4.0 KiB
Groovy
105 lines
4.0 KiB
Groovy
#!groovy
|
|
|
|
pipeline {
|
|
agent any
|
|
stages {
|
|
stage("Parallel Stage") {
|
|
parallel {
|
|
stage("Build / Test - JDK8") {
|
|
agent { node { label 'linux' } }
|
|
options { timeout(time: 120, unit: 'MINUTES') }
|
|
steps {
|
|
mavenBuild("jdk8", "-Pmongodb install")
|
|
junit '**/target/surefire-reports/TEST-*.xml,**/target/failsafe-reports/TEST-*.xml'
|
|
// Collect up the jacoco execution results (only on main build)
|
|
jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class',
|
|
exclusionPattern: '' +
|
|
// build tools
|
|
'**/org/eclipse/jetty/ant/**' +
|
|
',**/org/eclipse/jetty/maven/**' +
|
|
',**/org/eclipse/jetty/jspc/**' +
|
|
// example code / documentation
|
|
',**/org/eclipse/jetty/embedded/**' +
|
|
',**/org/eclipse/jetty/asyncrest/**' +
|
|
',**/org/eclipse/jetty/demo/**' +
|
|
// special environments / late integrations
|
|
',**/org/eclipse/jetty/gcloud/**' +
|
|
',**/org/eclipse/jetty/infinispan/**' +
|
|
',**/org/eclipse/jetty/osgi/**' +
|
|
',**/org/eclipse/jetty/spring/**' +
|
|
',**/org/eclipse/jetty/http/spi/**' +
|
|
// test classes
|
|
',**/org/eclipse/jetty/tests/**' +
|
|
',**/org/eclipse/jetty/test/**',
|
|
execPattern: '**/target/jacoco.exec',
|
|
classPattern: '**/target/classes',
|
|
sourcePattern: '**/src/main/java'
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
|
|
script {
|
|
step([$class : 'MavenInvokerRecorder', reportsFilenamePattern: "**/target/invoker-reports/BUILD*.xml",
|
|
invokerBuildDir: "**/target/its"])
|
|
}
|
|
}
|
|
}
|
|
|
|
stage("Build / Test - JDK11") {
|
|
agent { node { label 'linux' } }
|
|
options { timeout(time: 120, unit: 'MINUTES') }
|
|
steps {
|
|
mavenBuild("jdk11", "-Pmongodb install")
|
|
junit '**/target/surefire-reports/TEST-*.xml,**/target/failsafe-reports/TEST-*.xml'
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
}
|
|
}
|
|
|
|
stage("Build Javadoc") {
|
|
agent { node { label 'linux' } }
|
|
options { timeout(time: 30, unit: 'MINUTES') }
|
|
steps {
|
|
mavenBuild("jdk8", "install javadoc:javadoc -DskipTests")
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'JavaDoc'], [parserName: 'Java']]
|
|
}
|
|
}
|
|
|
|
stage("Build Compact3") {
|
|
agent { node { label 'linux' } }
|
|
options { timeout(time: 120, unit: 'MINUTES') }
|
|
steps {
|
|
mavenBuild("jdk8", "-Pcompact3 install -DskipTests")
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* To other developers, if you are using this method above, please use the following syntax.
|
|
*
|
|
* mavenBuild("<jdk>", "<profiles> <goals> <plugins> <properties>"
|
|
*
|
|
* @param jdk the jdk tool name (in jenkins) to use for this build
|
|
* @param cmdline the command line in "<profiles> <goals> <properties>"`format.
|
|
* @return the Jenkinsfile step representing a maven build
|
|
*/
|
|
def mavenBuild(jdk, cmdline) {
|
|
def mvnName = 'maven3.5'
|
|
def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // ".repository" //
|
|
def settingsName = 'oss-settings.xml'
|
|
def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true'
|
|
|
|
withMaven(
|
|
maven: mvnName,
|
|
jdk: "$jdk",
|
|
publisherStrategy: 'EXPLICIT',
|
|
globalMavenSettingsConfig: settingsName,
|
|
mavenOpts: mavenOpts,
|
|
mavenLocalRepo: localRepo) {
|
|
// Some common Maven command line + provided command line
|
|
sh "mvn -V -B -T3 -e -Dmaven.test.failure.ignore=true -Djetty.testtracker.log=true $cmdline -Dunix.socket.tmp=" + env.JENKINS_HOME
|
|
}
|
|
}
|
|
|
|
// vim: et:ts=2:sw=2:ft=groovy |