-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
155 lines (150 loc) · 5.08 KB
/
Jenkinsfile
File metadata and controls
155 lines (150 loc) · 5.08 KB
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
153
154
155
#!groovy
def workerNode = "devel12"
def teamSlackNotice = 'team-x-notice'
def teamSlackWarning = 'team-x-warning'
pipeline {
agent { label workerNode }
tools {
maven "Maven 3"
}
environment {
GITLAB_PRIVATE_TOKEN = credentials("metascrum-gitlab-api-token")
SONAR_SCANNER_HOME = tool 'SonarQube Scanner from Maven Central'
SONAR_SCANNER = "$SONAR_SCANNER_HOME/bin/sonar-scanner"
SONAR_PROJECT_KEY = "week-resolver"
SONAR_SOURCES = "service/src"
SONAR_TESTS = "service/test"
}
triggers {
cron(env.BRANCH_NAME == 'main' ? "H 3 * * 17" : "")
githubPush()
upstream('/Docker-payara6-bump-trigger')
}
options {
timestamps()
}
stages {
stage("clear workspace") {
steps {
deleteDir()
checkout scm
}
}
stage("verify") {
steps {
sh "mvn -D sourcepath=src/main/java verify pmd:pmd javadoc:aggregate"
junit "service/target/surefire-reports/TEST-*.xml"
}
}
stage("warnings") {
agent {label workerNode}
steps {
warnings consoleParsers: [
[parserName: "Java Compiler (javac)"],
[parserName: "JavaDoc Tool"]
],
unstableTotalAll: "0",
failedTotalAll: "0"
}
}
stage("pmd") {
agent {label workerNode}
steps {
step([$class: 'hudson.plugins.pmd.PmdPublisher',
pattern: '**/target/pmd.xml',
unstableTotalAll: "10",
failedTotalAll: "10"])
}
}
stage("sonarqube") {
steps {
withSonarQubeEnv(installationName: 'sonarqube.dbc.dk') {
script {
def status = 0
def sonarOptions = "-Dsonar.branch.name=${BRANCH_NAME}"
if (env.BRANCH_NAME != 'master') {
sonarOptions += " -Dsonar.newCode.referenceBranch=master"
}
// Do sonar via maven
status += sh returnStatus: true, script: """
mvn -B $sonarOptions sonar:sonar
"""
if (status != 0) {
error("build failed")
}
}
}
}
}
stage("deploy") {
when {
branch "master"
}
steps {
sh "mvn jar:jar deploy:deploy"
}
}
stage("build docker container") {
when {
branch "master"
}
steps {
script {
docker.image("docker-metascrum.artifacts.dbccloud.dk/weekresolver-service:${env.BRANCH_NAME}-${env.BUILD_NUMBER}").push()
}
}
}
stage("bump docker tag in weekresolver-secrets") {
agent {
docker {
label workerNode
image "docker-dbc.artifacts.dbccloud.dk/build-env:latest"
alwaysPull true
}
}
when {
branch "master"
}
steps {
script {
sh """
set-new-version weekresolver-service.yml ${env.GITLAB_PRIVATE_TOKEN} metascrum/weekresolver-secrets ${env.BRANCH_NAME}-${env.BUILD_NUMBER} -b staging
"""
}
}
}
}
post {
success {
script {
if (BRANCH_NAME == 'main') {
def dockerImageName = readFile(file: 'docker.out')
slackSend(channel: teamSlackNotice,
color: 'good',
message: "${JOB_NAME} #${BUILD_NUMBER} completed, and pushed ${dockerImageName} to artifactory.",
tokenCredentialId: 'slack-global-integration-token')
}
}
}
fixed {
script {
if ("${env.BRANCH_NAME}" == 'main') {
slackSend(channel: teamSlackWarning,
color: 'good',
message: "${env.JOB_NAME} #${env.BUILD_NUMBER} back to normal: ${env.BUILD_URL}",
tokenCredentialId: 'slack-global-integration-token')
}
}
}
failure {
script {
if ("${env.BRANCH_NAME}".equals('main')) {
slackSend(channel: teamSlackWarning,
color: 'warning',
message: "${env.JOB_NAME} #${env.BUILD_NUMBER} failed and needs attention: ${env.BUILD_URL}",
tokenCredentialId: 'slack-global-integration-token')
}
}
}
}
}