-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
205 lines (194 loc) · 7.09 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
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
pipeline {
agent any
environment{
HOST= "10.1.0.14"
PORT= "8081"
IMAGE_NAME= "nestjs-boilerplate-app"
REGISTRY_CREDENTIAL= 'docker-registery-credentials'
DOCKER_IMAGE=''
HOME="."
}
tools {nodejs "node"}
//=====================================================================Build stage======================================================================================================
stages {
stage('build') {
steps {
mattermostSend channel: '#staging',
message: '------------------------------'+JOB_NAME+' pipeline '+BUILD_NUMBER+' started------------------------------'
mattermostSend channel: '#staging',
message: JOB_NAME+' started to build with build number: '+BUILD_NUMBER
echo('building')
sh 'npm install --legacy-peer-deps'
}
post {
success {
mattermostSend channel: '#staging',
color:'good',
message: JOB_NAME+' is builded'
}
unstable {
echo 'I am unstable :/'
}
failure {
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' failed'
}
changed {
echo 'Things were different before...'
}
}
}
//=====================================================================Test stage==========================================================================================================
stage('test') {
steps {
mattermostSend channel: '#staging',
message: JOB_NAME+' started to test with build number: '+BUILD_NUMBER
echo('testing')
sh 'npm test'
}
post {
success {
mattermostSend channel: '#staging',
color:'good',
message: JOB_NAME+' test passed :)'
}
unstable {
echo 'I am unstable :/'
}
failure {
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' failed'
}
changed {
echo 'Things were different before...'
}
}
}
//=====================================================================Develop deploy======================================================================================================
stage('develop deploy') {
when{
expression{
BRANCH_NAME == "develop"
}
}
steps {
mattermostSend channel: '#staging',
message: JOB_NAME+' started to develop deploy with build number: '+BUILD_NUMBER
script{
DOCKER_IMAGE= docker.build "${env.HOST}:${env.PORT}/comfortech/${env.IMAGE_NAME}_develop:v${BUILD_NUMBER}"
}
sh "docker login -u=comfortech -p=PoI456ZxC ${env.HOST}:${env.PORT}"
sh "docker push ${env.HOST}:${env.PORT}/comfortech/${env.IMAGE_NAME}_develop:v${BUILD_NUMBER}"
}
post {
success {
mattermostSend channel: '#staging',
color:'good',
message: JOB_NAME+' develop deployed successfullt :)'
}
unstable {
echo 'I am unstable :/'
}
failure {
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' develop deploy failed'
}
changed {
echo 'Things were different before...'
}
}
}
//=====================================================================Deploy stage======================================================================================================
stage('prod deploy') {
when{
expression{
BRANCH_NAME == "main"
}
}
steps {
mattermostSend channel: '#staging',
message: JOB_NAME+' started to with deploy number: '+BUILD_NUMBER
echo('deploying')
echo('building docker image and pushing to the registry')
script{
DOCKER_IMAGE= docker.build "${env.HOST}:${env.PORT}/comfortech/${env.IMAGE_NAME}:v${BUILD_NUMBER}"
}
sh "docker login -u=comfortech -p=PoI456ZxC ${env.HOST}:${env.PORT}"
sh "docker push ${env.HOST}:${env.PORT}/comfortech/${env.IMAGE_NAME}:v${BUILD_NUMBER}"
}
post {
always{
sh "docker image rm -f ${env.HOST}:${env.PORT}/comfortech/${env.IMAGE_NAME}:v${BUILD_NUMBER}"
}
success{
mattermostSend channel: '#staging',
color:'good',
message: JOB_NAME+' deployed successfully :)'
}
failure{
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' failed'
}
}
}
//=====================================================================Docker cleanup stage======================================================================================================
stage('Cleanup docker') {
steps {
mattermostSend channel: '#staging',
message: JOB_NAME+' started to cleanup the docker with build number: '+BUILD_NUMBER
sh 'docker system prune --force --all --volumes'
}
post {
success {
mattermostSend channel: '#staging',
color:'good',
message: JOB_NAME+' docker cleaned up successfully :)'
}
unstable {
echo 'I am unstable :/'
}
failure {
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' failed'
}
changed {
echo 'Things were different before...'
}
}
}
//=====================================================================Workspace cleanup stage======================================================================================================
stage('cleaning up')
{
steps{
mattermostSend channel: '#staging',
message: JOB_NAME+' started to cleanup the workspace with build number: '+BUILD_NUMBER
cleanWs()
}
post {
success {
mattermostSend channel: '#staging',
message: JOB_NAME+' workspace cleaned up successfully :)'
mattermostSend channel: '#staging',
color: "good",
message: JOB_NAME+' passed successfully with deploy number: '+BUILD_NUMBER +'.:)'
}
unstable {
echo 'I am unstable :/'
}
failure {
mattermostSend channel: '#staging',
color:'RED',
message: JOB_NAME+' failed'
}
changed {
echo 'Things were different before...'
}
}
}
}
}