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 {
|
2019-02-21 09:45:12 -05:00
|
|
|
agent any
|
|
|
|
// save some io during the build
|
2020-11-18 06:26:38 -05:00
|
|
|
options { durabilityHint('PERFORMANCE_OPTIMIZED') }
|
2019-02-21 09:45:12 -05:00
|
|
|
stages {
|
2020-11-18 06:26:38 -05:00
|
|
|
stage("Parallel Stage") {
|
2019-02-21 09:45:12 -05:00
|
|
|
parallel {
|
2020-11-18 06:26:38 -05:00
|
|
|
stage("Build / Test - JDK11") {
|
|
|
|
agent { node { label 'linux' } }
|
2019-02-21 09:45:12 -05:00
|
|
|
steps {
|
2020-11-18 06:26:38 -05:00
|
|
|
container('jetty-build') {
|
2021-02-02 09:58:17 -05:00
|
|
|
timeout( time: 120, unit: 'MINUTES' ) {
|
2020-12-10 21:10:35 -05:00
|
|
|
mavenBuild( "jdk11", "clean install -Perrorprone", "maven3")
|
2020-05-07 17:29:56 -04:00
|
|
|
// 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/**' +
|
2020-11-16 09:18:58 -05:00
|
|
|
',**/org/eclipse/jetty/osgi/**' +
|
2020-05-07 17:29:56 -04:00
|
|
|
',**/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'
|
2020-12-10 20:47:26 -05:00
|
|
|
recordIssues id: "jdk11", name: "Static Analysis jdk11", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser(), errorProne()]
|
2020-05-07 17:29:56 -04:00
|
|
|
}
|
2020-04-17 19:59:04 -04:00
|
|
|
}
|
2018-01-31 23:29:08 -05:00
|
|
|
}
|
2018-01-31 20:24:31 -05:00
|
|
|
}
|
2019-02-26 21:37:21 -05:00
|
|
|
|
2020-09-18 00:19:28 -04:00
|
|
|
stage("Build / Test - JDK15") {
|
2019-09-23 11:30:35 -04:00
|
|
|
agent { node { label 'linux' } }
|
|
|
|
steps {
|
2020-05-07 17:29:56 -04:00
|
|
|
container( 'jetty-build' ) {
|
2021-02-02 09:58:17 -05:00
|
|
|
timeout( time: 120, unit: 'MINUTES' ) {
|
2020-12-11 00:43:00 -05:00
|
|
|
mavenBuild( "jdk15", "clean install", "maven3")
|
2020-12-10 20:47:26 -05:00
|
|
|
recordIssues id: "jdk15", name: "Static Analysis jdk15", aggregatingResults: true, enabledForFailure: true, tools: [mavenConsole(), java(), checkStyle(), spotBugs(), pmdParser()]
|
2020-04-17 19:59:04 -04:00
|
|
|
}
|
2019-08-14 06:30:54 -04:00
|
|
|
}
|
2019-09-23 11:30:35 -04:00
|
|
|
}
|
|
|
|
}
|
2019-02-21 12:01:26 -05:00
|
|
|
}
|
2018-11-01 11:13:16 -04:00
|
|
|
}
|
2020-05-07 20:30:36 -04:00
|
|
|
}
|
|
|
|
post {
|
|
|
|
failure {
|
|
|
|
slackNotif()
|
|
|
|
}
|
|
|
|
unstable {
|
|
|
|
slackNotif()
|
|
|
|
}
|
|
|
|
fixed {
|
|
|
|
slackNotif()
|
2019-05-30 06:15:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 20:26:15 -04:00
|
|
|
|
2019-05-30 06:15:29 -04:00
|
|
|
def slackNotif() {
|
2019-08-14 10:39:06 -04:00
|
|
|
script {
|
|
|
|
try {
|
2020-11-23 18:42:14 -05:00
|
|
|
if ( env.BRANCH_NAME == 'jetty-10.0.x' || env.BRANCH_NAME == 'jetty-11.0.x') {
|
2019-08-14 10:39:06 -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',
|
2020-11-18 06:26:38 -05:00
|
|
|
color: COLOR_MAP[currentBuild.currentResult],
|
|
|
|
message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} - ${env.BUILD_URL}"
|
2019-05-30 06:34:42 -04:00
|
|
|
}
|
2019-08-14 10:39:06 -04:00
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace()
|
|
|
|
echo "skip failure slack notification: " + e.getMessage()
|
2019-05-30 06:34:42 -04:00
|
|
|
}
|
2019-08-14 10:39:06 -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
|
|
|
|
*/
|
2020-12-10 20:47:26 -05:00
|
|
|
def mavenBuild(jdk, cmdline, mvnName) {
|
2020-11-18 06:26:38 -05:00
|
|
|
script {
|
|
|
|
try {
|
|
|
|
withEnv(["JAVA_HOME=${ tool "$jdk" }",
|
|
|
|
"PATH+MAVEN=${ tool "$jdk" }/bin:${tool "$mvnName"}/bin",
|
|
|
|
"MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {
|
|
|
|
configFileProvider(
|
|
|
|
[configFile(fileId: 'oss-settings.xml', variable: 'GLOBAL_MVN_SETTINGS')]) {
|
2021-01-25 18:47:01 -05:00
|
|
|
sh "mvn --no-transfer-progress -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository -Pci -V -B -e -Djetty.testtracker.log=true $cmdline -Dunix.socket.tmp=/tmp/unixsocket"
|
2020-11-18 06:26:38 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-10 23:11:04 -04:00
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
2020-11-10 19:54:07 -05:00
|
|
|
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml', allowEmptyResults: true
|
2020-11-18 06:26:38 -05:00
|
|
|
}
|
2019-02-21 09:45:12 -05:00
|
|
|
}
|
2018-01-31 20:48:13 -05:00
|
|
|
}
|
2016-07-26 10:25:23 -04:00
|
|
|
|
2018-11-27 19:12:07 -05:00
|
|
|
// vim: et:ts=2:sw=2:ft=groovy
|