99 lines
4.4 KiB
Groovy
99 lines
4.4 KiB
Groovy
#!groovy
|
|
|
|
pipeline {
|
|
agent any
|
|
triggers {
|
|
pollSCM('@daily')
|
|
}
|
|
options {
|
|
buildDiscarder logRotator( numToKeepStr: '50' )
|
|
// save some io during the build
|
|
durabilityHint( 'PERFORMANCE_OPTIMIZED' )
|
|
}
|
|
parameters {
|
|
string( defaultValue: 'jetty-10.0.x', description: 'GIT branch name to build (jetty-10.0.x/jetty-11.0.x/etc.)',
|
|
name: 'JETTY_BRANCH' )
|
|
}
|
|
|
|
stages {
|
|
stage("Checkout Jetty Branch") {
|
|
steps {
|
|
git url: 'https://github.com/eclipse/jetty.project/', branch: '${JETTY_BRANCH}'
|
|
}
|
|
}
|
|
stage( "Build / Test - JDK11" ) {
|
|
agent {
|
|
node { label 'linux' }
|
|
}
|
|
steps {
|
|
timeout( time: 120, unit: 'MINUTES' ) {
|
|
mavenBuild( "jdk11", "-T3 clean install -Djacoco.skip=true -pl :test-websocket-autobahn -am -Pautobahn -Dtest=AutobahnTests", "maven3" ) //
|
|
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml,**/target/autobahntestsuite-reports/*.xml'
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/core/servers", reportFiles: 'index.html', reportName: 'Autobahn Report Core Server', reportTitles: ''])
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/core/clients", reportFiles: 'index.html', reportName: 'Autobahn Report Core Client', reportTitles: ''])
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/javax/servers", reportFiles: 'index.html', reportName: 'Autobahn Report Javax Server', reportTitles: ''])
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/javax/clients", reportFiles: 'index.html', reportName: 'Autobahn Report Javax Client', reportTitles: ''])
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/jetty/servers", reportFiles: 'index.html', reportName: 'Autobahn Report Jetty Server', reportTitles: ''])
|
|
publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "${env.WORKSPACE}/tests/test-websocket-autobahn/target/reports/jetty/clients", reportFiles: 'index.html', reportName: 'Autobahn Report Jetty Client', reportTitles: ''])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
failure {
|
|
slackNotif()
|
|
}
|
|
unstable {
|
|
slackNotif()
|
|
}
|
|
fixed {
|
|
slackNotif()
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
def slackNotif() {
|
|
script {
|
|
try {
|
|
if (env.BRANCH_NAME == 'jetty-10.0.x' || env.BRANCH_NAME == 'jetty-9.4.x' || env.BRANCH_NAME == 'jetty-11.0.x') {
|
|
//BUILD_USER = currentBuild.rawBuild.getCause(Cause.UserIdCause).getUserId()
|
|
// by ${BUILD_USER}
|
|
COLOR_MAP = ['SUCCESS': 'good', 'FAILURE': 'danger', 'UNSTABLE': 'danger', 'ABORTED': 'danger']
|
|
slackSend channel: '#jenkins',
|
|
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()
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
* @paran mvnName maven installation to use
|
|
* @return the Jenkinsfile step representing a maven build
|
|
*/
|
|
def mavenBuild(jdk, cmdline, mvnName) {
|
|
script {
|
|
withEnv(["JAVA_HOME=${ tool "$jdk" }",
|
|
"PATH+MAVEN=${ tool "$jdk" }/bin:${tool "$mvnName"}/bin",
|
|
"MAVEN_OPTS=-Xms2g -Xmx8g -Djava.awt.headless=true"]) {
|
|
configFileProvider(
|
|
[configFile(fileId: 'oss-settings.xml', variable: 'GLOBAL_MVN_SETTINGS')]) {
|
|
sh "mvn -Denforcer.skip=true -Dlicense.skip=true -Dspotbugs.skip=true -Dcheckstyle.skip=true --no-transfer-progress -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository -Pci -V -B -e -Djetty.testtracker.log=true $cmdline"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// vim: et:ts=2:sw=2:ft=groovy
|