forked from lfs261/example-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
233 lines (214 loc) · 5.35 KB
/
Jenkinsfile
File metadata and controls
233 lines (214 loc) · 5.35 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
pipeline {
agent none
stages{
stage("build result"){
agent {
docker {
image 'node:8.16.0-alpine'
args '--user root'
}
}
when{
changeset "**/result/**"
}
steps{
echo 'Compiling result app'
dir('result'){
sh 'npm install'
}
}
}
stage("build vote"){
agent {
docker{
image 'python:2.7-alpine'
args '--user root'
}
}
when{
changeset "**/vote/**"
}
steps{
echo 'Compiling vote app'
dir('vote'){
sh 'pip install -r requirements.txt'
}
}
}
stage("build worker"){
agent {
docker {
image 'maven:3.6.3-openjdk-17-slim'
args '-v $HOME/.m2:/root/.m2'
}
}
when{
changeset "**/worker/**"
}
steps{
echo 'Compiling worker app'
dir('worker'){
sh 'mvn compile'
}
}
}
stage("test result"){
agent {
docker {
image 'node:8.16.0-alpine'
args '--user root'
}
}
when{
changeset "**/result/**"
}
steps{
echo 'Running Unit Tets on result app'
dir('result'){
sh 'npm test'
}
}
}
stage("test vote"){
agent {
docker{
image 'python:2.7-alpine'
args '--user root'
}
}
when{
changeset "**/vote/**"
}
steps{
echo 'Running Unit Tets on vote app'
dir('vote'){
sh 'pip install -r requirements.txt'
sh 'nosetests -v'
}
}
}
stage("test worker"){
agent {
docker {
image 'maven:3.6.3-openjdk-17-slim'
args '-v $HOME/.m2:/root/.m2'
}
}
when{
changeset "**/worker/**"
}
steps{
echo 'Running Unit Tets on worker app'
dir('worker'){
sh 'mvn clean test'
}
}
}
stage("package worker"){
agent {
docker {
image 'maven:3.6.3-openjdk-17-slim'
args '-v $HOME/.m2:/root/.m2'
}
}
when{
branch 'master'
changeset "**/worker/**"
}
steps{
echo 'Packaging worker app'
dir('worker'){
sh 'mvn package -DskipTests'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
stage("docker build result"){
agent any
when{
changeset "**/result/**"
branch 'master'
}
steps{
script {
docker.withRegistry("https://index.docker.io/v1/", 'dockerlogin') {
def resultImage = docker.build("lauroffecapgemini/result:v${env.BUILD_ID}",'./result')
resultImage.push()
resultImage.push("${env.BRANCH_NAME}")
}
}
}
}
stage("docker build vote"){
agent any
when{
changeset "**/vote/**"
branch 'master'
}
steps{
script {
docker.withRegistry('https://index.docker.io/v1/', 'dockerlogin') {
def voteImage = docker.build("lauroffecapgemini/vote:v${env.BUILD_ID}", "./vote")
voteImage.push()
voteImage.push("${env.BRANCH_NAME}")
}
}
}
}
stage("docker build worker"){
agent any
when{
changeset "**/worker/**"
branch 'master'
}
steps{
script {
docker.withRegistry("https://index.docker.io/v1/", 'dockerlogin') {
def workerImage = docker.build("lauroffecapgemini/worker:v${env.BUILD_ID}",'./worker')
workerImage.push()
workerImage.push("${env.BRANCH_NAME}")
}
}
}
}
stage('Sonarqube') {
agent any
tools {
jdk "JDK11" // the name you have given the JDK installation in Global Tool Configuration
}
environment{
sonarpath = tool 'SonarScanner'
}
steps {
echo 'Running Sonarqube Analysis..'
withSonarQubeEnv('sonar-instavote') {
sh "${sonarpath}/bin/sonar-scanner -Dproject.settings=sonar-project.properties -Dorg.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL=86400"
}
}
}
stage("Quality Gate") {
steps {
timeout(time: 1, unit: 'HOURS') {
// Parameter indicates whether to set pipeline to UNSTABLE if Quality Gate fails
// true = set pipeline to UNSTABLE, false = don't
waitForQualityGate abortPipeline: true
}
}
}
stage('deploy to dev'){
agent any
when{
branch 'master'
}
steps{
echo 'Deploy instavote app with docker compose'
sh 'docker-compose up -d'
}
}
}
post{
always{
echo 'Building multibranch pipeline for worker is completed..'
}
}
}