-
Notifications
You must be signed in to change notification settings - Fork 50
/
Jenkinsfile
152 lines (137 loc) · 4.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
pipeline {
agent {
label "centos-latest"
}
options {
timeout(time: 240, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '2'))
disableConcurrentBuilds(abortPrevious: true)
}
tools {
maven 'apache-maven-latest'
jdk 'temurin-jdk17-latest'
}
environment {
BUILD_TIMESTAMP = sh(returnStdout: true, script: 'date +%Y%m%d%H%M').trim()
MAIN_BRANCH = 'master'
}
parameters {
choice(
name: 'BUILD_TYPE',
choices: ['nightly', 'milestone', 'release'],
description: '''
Choose the type of build.
Note that a release build will <b>not</b> promote the build, but rather will promote the most recent milestone build.
'''
)
booleanParam(
name: 'ECLIPSE_SIGN',
defaultValue: true,
description: '''
Choose whether or not the bundles will be signed.
This is relevant only for nightly and milestone builds.
'''
)
booleanParam(
name: 'PROMOTE',
defaultValue: true,
description: 'Whether to promote the build to the download server.'
)
}
stages {
stage('Display Parameters') {
steps {
script {
env.BUILD_TYPE = params.BUILD_TYPE
if (env.BRANCH_NAME == env.MAIN_BRANCH) {
// Only sign the master branch.
//
env.ECLIPSE_SIGN = params.ECLIPSE_SIGN
} else {
// Do not sign PR builds.
env.ECLIPSE_SIGN = false
}
// Only promote signed builds, i.e., do not sign or promote PR builds.
//
env.PROMOTE = params.PROMOTE && (env.ECLIPSE_SIGN == 'true')
def description = """
BUILD_TIMESTAMP=${env.BUILD_TIMESTAMP}
BUILD_TYPE=${env.BUILD_TYPE}
ECLIPSE_SIGN=${env.ECLIPSE_SIGN}
PROMOTE=${env.PROMOTE}
BRANCH_NAME=${env.BRANCH_NAME}
""".trim()
echo description
currentBuild.description = description.replace("\n", "<br/>")
}
}
}
stage('Build GEF') {
steps {
script {
if (env.PROMOTE == 'true') {
// Only provide an agent context, which allows uploading to download.eclipse.org if we are promoting.
// PR builds are not permitted to promote.
//
sshagent(['projects-storage.eclipse.org-bot-ssh']) {
mvn()
}
} else {
mvn()
archiveArtifacts 'org.eclipse.gef.repository/**'
}
}
}
}
}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
recordIssues publishAllIssues: true, tools: [java(), mavenConsole(), javaDoc()]
}
failure {
archiveArtifacts '**'
mail to: '[email protected]',
subject: "[GEF CI] Build Failure ${currentBuild.fullDisplayName}",
mimeType: 'text/html',
body: "Project: ${env.JOB_NAME}<br/>Build Number: ${env.BUILD_NUMBER}<br/>Build URL: ${env.BUILD_URL}<br/>Console: ${env.BUILD_URL}/console"
}
fixed {
mail to: '[email protected]',
subject: "[GEF CI] Back to normal ${currentBuild.fullDisplayName}",
mimeType: 'text/html',
body: "Project: ${env.JOB_NAME}<br/>Build Number: ${env.BUILD_NUMBER}<br/>Build URL: ${env.BUILD_URL}<br/>Console: ${env.BUILD_URL}/console"
}
cleanup {
deleteDir()
}
}
}
def void mvn() {
withSonarQubeEnv(credentialsId: 'sonarcloud-token', installationName: 'SonarCloud.io') {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
// Only promoted builds will be signed.
//
sh '''
if [[ $PROMOTE == true ]]; then
promotion_argument='-Ppromote -Peclipse-sign'
fi
mvn \
$promotion_argument \
--no-transfer-progress \
-DapiBaselineTargetDirectory=${WORKSPACE} \
-Dmaven.repo.local=$WORKSPACE/.m2/repository \
-Dproject.build.sourceEncoding=UTF-8 \
-Dbuild.id=${BUILD_TIMESTAMP} \
-Dcommit.id=$GIT_COMMIT \
-Dbuild.type=$BUILD_TYPE \
-Dorg.eclipse.justj.p2.manager.build.url=$JOB_URL \
-Dsonar.projectKey=gef-classic \
-Dsonar.organization=eclipse \
clean \
verify \
sonar:sonar
'''
}
}
}