jetty.project/Jenkinsfile

206 lines
6.8 KiB
Plaintext
Raw Normal View History

#!groovy
def jdks = ["jdk8","jdk9","jdk10","jdk11"]
def oss = ["linux"] //windows? ,"linux-docker"
def builds = [:]
for (def os in oss) {
for (def jdk in jdks) {
builds[os+"_"+jdk] = getFullBuild( jdk, os )
}
}
parallel builds
2016-07-25 19:06:01 -04:00
def getFullBuild(jdk, os) {
return {
node(os) {
// System Dependent Locations
def mvntool = tool name: 'maven3.5', type: 'hudson.tasks.Maven$MavenInstallation'
def jdktool = tool name: "$jdk", type: 'hudson.model.JDK'
def mvnName = 'maven3.5'
def localRepo = ".repository" // "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}"
def settingsName = 'oss-settings.xml'
2016-07-25 19:06:01 -04:00
// Environment
List mvnEnv = ["PATH+MVN=${mvntool}/bin", "PATH+JDK=${jdktool}/bin", "JAVA_HOME=${jdktool}/", "MAVEN_HOME=${mvntool}"]
mvnEnv.add("MAVEN_OPTS=-Xms256m -Xmx1024m -Djava.awt.headless=true")
try
{
stage("Checkout - ${jdk}") {
checkout scm
}
} catch (Exception e) {
notifyBuild("Checkout Failure", jdk)
throw e
}
2016-07-25 19:06:01 -04:00
try
{
stage("Compile - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 15, unit: 'MINUTES') {
withMaven(
maven: mvnName,
jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
globalMavenSettingsConfig: settingsName,
mavenLocalRepo: localRepo) {
sh "mvn -V -B clean install -DskipTests -T6"
}
}
}
}
} catch(Exception e) {
notifyBuild("Compile Failure", jdk)
throw e
2016-09-20 16:00:57 -04:00
}
2016-07-25 19:06:01 -04:00
try
{
stage("Javadoc - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 20, unit: 'MINUTES') {
withMaven(
maven: mvnName,
jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
globalMavenSettingsConfig: settingsName,
mavenLocalRepo: localRepo) {
sh "mvn -V -B javadoc:javadoc -T5"
}
}
}
}
} catch(Exception e) {
notifyBuild("Javadoc Failure", jdk)
throw e
2016-09-20 16:00:57 -04:00
}
2016-07-26 10:25:23 -04:00
try
{
stage("Test - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 90, unit: 'MINUTES') {
// Run test phase / ignore test failures
withMaven(
maven: mvnName,
jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
globalMavenSettingsConfig: settingsName,
mavenLocalRepo: localRepo) {
//
Jetty 9.4.x 2231 refactor session tests (#2382) * Issue #2231 WIP * Issue #2231 Add tests for FileSessionDataStore and MongoSessionDataStore. * Issue #2231 create unit tests for every SessionDataStore Signed-off-by: Jan Bartel <janb@webtide.com> * Issue #2231 Refactor session tests Signed-off-by: Jan Bartel <janb@webtide.com> * Issue #2231 Refactor and cleanup session tests. Signed-off-by: Jan Bartel <janb@webtide.com> * hazelcast tests faster Signed-off-by: olivier lamy <olamy@webtide.com> * make hazelcasts tests even faster Signed-off-by: olivier lamy <olamy@webtide.com> * cleanup comments Signed-off-by: olivier lamy <olamy@webtide.com> * run mongodb test in embdedded mode Signed-off-by: olivier lamy <olamy@webtide.com> * mongodb embedded test enabled per default Signed-off-by: olivier lamy <olamy@webtide.com> * Issue #2231 more session tests Signed-off-by: Jan Bartel <janb@webtide.com> * fix mongodb embedded tests Signed-off-by: olivier lamy <olamy@webtide.com> * cleanup code Signed-off-by: olivier lamy <olamy@webtide.com> * use Logger rather than System.err.println Signed-off-by: olivier lamy <olamy@webtide.com> * Issue #2231 Add test for DefaultSessionCache Signed-off-by: Jan Bartel <janb@webtide.com> * Issue #2231 Redisable mongo tests by default. Signed-off-by: Jan Bartel <janb@webtide.com> * fix issue with empty local repo build Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * jenkins should run mongodb tests Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * build this plugin last so we should not hit the maven invoker plugin Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * build test first for this one Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * use invoker plugin 3.0.2-SNAPSHOT as there is a fix for https://issues.apache.org/jira/browse/MINVOKER-191 Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * temporary use of apache snapshots repository because of maven-invoker-plugin 3.0.2-SNAPSHOT Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
2018-03-28 06:14:15 -04:00
sh "mvn -V -B install -Dmaven.test.failure.ignore=true -Prun-its -T3 -e -Dmaven.repo.local=${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER} -Pmongodb"
}
// withMaven doesn't label..
// Report failures in the jenkins UI
junit testResults:'**/target/surefire-reports/TEST-*.xml'
// Collect up the jacoco execution results
def jacocoExcludes =
// 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/**";
step( [$class : 'JacocoPublisher',
inclusionPattern: '**/org/eclipse/jetty/**/*.class',
exclusionPattern: jacocoExcludes,
execPattern : '**/target/jacoco.exec',
classPattern : '**/target/classes',
sourcePattern : '**/src/main/java'] )
// Report on Maven and Javadoc warnings
step( [$class : 'WarningsPublisher',
consoleParsers: [[parserName: 'Maven'],
[parserName: 'JavaDoc'],
[parserName: 'JavaC']]] )
}
if(isUnstable())
{
notifyBuild("Unstable / Test Errors", jdk)
}
}
}
} catch(Exception e) {
notifyBuild("Test Failure", jdk)
throw e
2016-08-15 16:37:38 -04:00
}
2016-07-25 19:06:01 -04:00
try
{
stage ("Compact3 - ${jdk}") {
withEnv(mvnEnv) {
withMaven(
maven: mvnName,
jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
globalMavenSettingsConfig: settingsName,
mavenLocalRepo: localRepo) {
sh "mvn -f aggregates/jetty-all-compact3 -V -B -Pcompact3 clean install -T5"
}
}
}
} catch(Exception e) {
notifyBuild("Compact3 Failure", jdk)
throw e
}
}
2016-07-25 19:06:01 -04:00
}
}
2016-07-26 10:25:23 -04:00
2016-07-28 15:00:24 -04:00
// True if this build is part of the "active" branches
// for Jetty.
def isActiveBranch()
{
def branchName = "${env.BRANCH_NAME}"
return ( branchName == "master" ||
( branchName.startsWith("jetty-") && branchName.endsWith(".x") ) );
}
// Test if the Jenkins Pipeline or Step has marked the
// current build as unstable
def isUnstable()
{
return currentBuild.result == "UNSTABLE"
}
// Send a notification about the build status
def notifyBuild(String buildStatus, String jdk)
{
if ( !isActiveBranch() )
{
// don't send notifications on transient branches
return
}
2016-08-15 16:37:38 -04:00
// default the value
buildStatus = buildStatus ?: "UNKNOWN"
2016-08-15 16:37:38 -04:00
def email = "${env.EMAILADDRESS}"
def summary = "${env.JOB_NAME}#${env.BUILD_NUMBER} - ${buildStatus} with jdk ${jdk}"
def detail = """<h4>Job: <a href='${env.JOB_URL}'>${env.JOB_NAME}</a> [#${env.BUILD_NUMBER}]</h4>
<p><b>${buildStatus}</b></p>
<table>
<tr><td>Build</td><td><a href='${env.BUILD_URL}'>${env.BUILD_URL}</a></td><tr>
<tr><td>Console</td><td><a href='${env.BUILD_URL}console'>${env.BUILD_URL}console</a></td><tr>
<tr><td>Test Report</td><td><a href='${env.BUILD_URL}testReport/'>${env.BUILD_URL}testReport/</a></td><tr>
</table>
"""
emailext (
to: email,
subject: summary,
body: detail
)
}
// vim: et:ts=2:sw=2:ft=groovy