2018-01-31 20:44:55 -05:00
|
|
|
#!groovy
|
2018-01-31 20:46:35 -05:00
|
|
|
|
2018-11-12 11:12:15 -05:00
|
|
|
pipeline {
|
|
|
|
agent any
|
2018-12-31 21:37:24 -05:00
|
|
|
// save some io during the build
|
|
|
|
options { durabilityHint('PERFORMANCE_OPTIMIZED') }
|
2018-11-12 11:12:15 -05:00
|
|
|
stages {
|
|
|
|
stage("Parallel Stage") {
|
|
|
|
parallel {
|
|
|
|
stage("Build / Test - JDK8") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 120, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk8", "-Pmongodb install", "maven3", true)
|
|
|
|
// 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']]
|
|
|
|
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml'
|
|
|
|
}
|
2018-01-31 23:29:08 -05:00
|
|
|
}
|
2018-01-31 20:24:31 -05:00
|
|
|
}
|
2016-07-26 10:25:23 -04:00
|
|
|
|
2018-11-12 11:12:15 -05:00
|
|
|
stage("Build / Test - JDK11") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 120, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk11", "-Pmongodb install", "maven3", true)
|
|
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
|
|
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml'
|
|
|
|
}
|
2019-02-26 21:37:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage("Build / Test - JDK12") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 120, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk12", "-Pmongodb install", "maven3", true)
|
|
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
|
|
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml'
|
|
|
|
}
|
2018-11-12 11:12:15 -05:00
|
|
|
}
|
2018-11-01 11:13:16 -04:00
|
|
|
}
|
2018-01-31 20:48:13 -05:00
|
|
|
|
2018-11-12 11:12:15 -05:00
|
|
|
stage("Build Javadoc") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk11", "install javadoc:javadoc javadoc:aggregate-jar -DskipTests", "maven3", true)
|
|
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'JavaDoc'], [parserName: 'Java']]
|
|
|
|
}
|
2018-11-12 11:12:15 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-31 20:48:13 -05:00
|
|
|
|
2019-05-08 20:08:29 -04:00
|
|
|
stage("Checkstyle ") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk11", "install -f build-resources", "maven3", true)
|
|
|
|
mavenBuild("jdk11", "install checkstyle:check -DskipTests", "maven3", true)
|
|
|
|
recordIssues(
|
|
|
|
enabledForFailure: true, aggregatingResults: true,
|
|
|
|
tools: [java(), checkStyle(pattern: '**/target/checkstyle-result.xml', reportEncoding: 'UTF-8')])
|
|
|
|
}
|
2019-05-08 20:08:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-12 11:12:15 -05:00
|
|
|
stage("Build Compact3") {
|
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2019-08-14 06:30:54 -04:00
|
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
|
|
mavenBuild("jdk8", "-Pcompact3 install -DskipTests", "maven3", true)
|
|
|
|
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
|
|
|
|
}
|
2018-11-12 11:12:15 -05:00
|
|
|
}
|
2018-11-01 11:13:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-31 20:48:13 -05:00
|
|
|
}
|
2019-05-30 06:15:29 -04:00
|
|
|
post {
|
|
|
|
failure {
|
|
|
|
slackNotif()
|
|
|
|
}
|
|
|
|
unstable {
|
|
|
|
slackNotif()
|
|
|
|
}
|
|
|
|
fixed {
|
|
|
|
slackNotif()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def slackNotif() {
|
2019-05-31 00:24:13 -04:00
|
|
|
script {
|
2019-06-28 04:04:43 -04:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( env.BRANCH_NAME == 'jetty-10.0.x' || env.BRANCH_NAME == 'jetty-9.4.x' )
|
|
|
|
{
|
2019-05-31 00:24:13 -04:00
|
|
|
//BUILD_USER = currentBuild.rawBuild.getCause(Cause.UserIdCause).getUserId()
|
|
|
|
// by ${BUILD_USER}
|
|
|
|
COLOR_MAP = ['SUCCESS': 'good', 'FAILURE': 'danger', 'UNSTABLE': 'danger', 'ABORTED': 'danger']
|
|
|
|
slackSend channel: '#jenkins',
|
2019-06-28 04:04:43 -04:00
|
|
|
color: COLOR_MAP[currentBuild.currentResult],
|
|
|
|
message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} - ${env.BUILD_URL}"
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace()
|
|
|
|
echo "skip failure slack notification: " + e.getMessage()
|
2019-05-30 06:34:42 -04:00
|
|
|
}
|
|
|
|
}
|
2018-01-31 20:24:31 -05:00
|
|
|
}
|
2019-06-28 04:04:43 -04:00
|
|
|
|
2018-11-13 08:24:29 -05:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2019-01-24 16:40:42 -05:00
|
|
|
def mavenBuild(jdk, cmdline, mvnName, junitPublishDisabled) {
|
2019-07-29 21:13:54 -04:00
|
|
|
def localRepo = ".repository"
|
2018-11-12 11:12:15 -05:00
|
|
|
def mavenOpts = '-Xms1g -Xmx4g -Djava.awt.headless=true'
|
|
|
|
|
|
|
|
withMaven(
|
|
|
|
maven: mvnName,
|
|
|
|
jdk: "$jdk",
|
|
|
|
publisherStrategy: 'EXPLICIT',
|
2019-01-24 16:40:42 -05:00
|
|
|
options: [junitPublisher(disabled: junitPublishDisabled),mavenLinkerPublisher(disabled: false),pipelineGraphPublisher(disabled: false)],
|
2018-11-12 11:12:15 -05:00
|
|
|
mavenOpts: mavenOpts,
|
|
|
|
mavenLocalRepo: localRepo) {
|
|
|
|
// Some common Maven command line + provided command line
|
2019-04-05 23:27:42 -04:00
|
|
|
sh "mvn -Pci -V -B -T3 -e -Dmaven.test.failure.ignore=true -Djetty.testtracker.log=true $cmdline -Dunix.socket.tmp=" + env.JENKINS_HOME
|
2018-11-12 11:12:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-22 06:53:46 -04:00
|
|
|
|
2018-11-27 19:12:07 -05:00
|
|
|
// vim: et:ts=2:sw=2:ft=groovy
|