-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
67 lines (63 loc) · 2.15 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!groovy
pipeline {
agent any
options {
durabilityHint('PERFORMANCE_OPTIMIZED')
buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '2'))
timeout(time: 60, unit: 'MINUTES')
}
stages {
stage( "Parallel Stage" ) {
parallel {
stage( "Build / Test - JDK11" ) {
agent { node { label 'linux' } }
options { timeout( time: 120, unit: 'MINUTES' ) }
steps {
mavenBuild( "jdk11", "clean install javadoc:javadoc" )
// Collect up the jacoco execution results
jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class',
exclusionPattern: '',
execPattern: '**/target/jacoco.exec',
classPattern: '**/target/classes',
sourcePattern: '**/src/main/java'
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
script {
echo "env.BRANCH_NAME:" + env.BRANCH_NAME
if ( env.BRANCH_NAME == 'main' )
{
mavenBuild( "jdk11", "deploy" )
}
}
}
}
}
}
}
}
/**
* 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'
def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // ".repository" //
def settingsName = 'oss-settings.xml'
def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'
withMaven(
maven: mvnName,
jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
globalMavenSettingsConfig: settingsName,
options: [junitPublisher(disabled: false)],
mavenOpts: mavenOpts,
mavenLocalRepo: localRepo) {
// Some common Maven command line + provided command line
sh "mvn -V -B $cmdline"
}
}
// vim: et:ts=2:sw=2:ft=groovy