-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
83 lines (69 loc) · 1.97 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
#!groovy
def workerNode = "devel11"
void notifyOfBuildStatus(final String buildStatus) {
final String subject = "${buildStatus}: ${env.JOB_NAME} #${env.BUILD_NUMBER}"
final String details = """<p> Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>"""
emailext(
subject: "$subject",
body: "$details", attachLog: true, compressLog: false,
mimeType: "text/html",
recipientProviders: [[$class: "CulpritsRecipientProvider"]]
)
}
pipeline {
agent { label workerNode }
tools {
maven "Maven 3"
}
triggers {
pollSCM("H/03 * * * *")
}
options {
timestamps()
}
stages {
stage("Clear workspace") {
steps {
deleteDir()
checkout scm
}
}
stage("Maven build") {
steps {
sh "mvn clean verify pmd:pmd -Dmaven.test.failure.ignore=false"
}
}
stage("Publish pmd results") {
steps {
step([$class: 'hudson.plugins.pmd.PmdPublisher', checkstyle: 'target/pmd.xml'])
}
}
stage("Package") {
steps {
sh "tar -czf target/dist/ocb-tools-1.0.0.tar.gz target/dist/ocb-tools-1.0.0"
}
}
stage("Archive artifacts") {
steps {
archiveArtifacts(artifacts: "target/dist/*.tar.gz")
}
}
stage("Build and deploy docker") {
when {
expression { env.BRANCH_NAME == 'master' }
}
steps {
sh './bin/build-and-push-dockerimage.sh'
}
}
}
post {
unstable {
notifyOfBuildStatus("build became unstable")
}
failure {
notifyOfBuildStatus("build failed")
}
}
}