forked from lftraining/LFS261-example-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
175 lines (155 loc) · 3.49 KB
/
Jenkinsfile
File metadata and controls
175 lines (155 loc) · 3.49 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
pipeline {
agent none
stages{
stage("worker-build"){
when{
changeset "**/worker/**"
}
agent {
docker{
image 'maven:3.9.8-sapmachine-21'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
echo 'Compiling worker app'
dir('worker'){
sh 'mvn compile'
}
}
}
stage("worker-test"){
when{
changeset "**/worker/**"
}
agent {
docker{
image 'maven:3.9.8-sapmachine-21'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
echo 'Running Unit Tests on worker app'
dir('worker'){
sh 'mvn clean test'
}
}
}
stage("worker-package"){
when {
branch 'master'
changeset "**/worker/**"
}
agent {
docker{
image 'maven:3.9.8-sapmachine-21'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
echo 'Packaging worker app'
dir('worker'){
sh 'mvn package -DskipTests'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
stage("worker-docker-package"){
agent any
when{
changeset "**/worker/**"
branch 'master'
}
steps{
echo 'Packaging worker app with docker'
script{
docker.withRegistry('https://index.docker.io/v1','dockerlogin') { def workerImage= docker.build("projectkmac/worker:v${env.BUILD_ID}", "./worker")
workerImage.push()
workerImage.push("latest")
}
}
}
}
stage('vote-build'){
agent{
docker{
image 'python:3.11-slim'
args '--user root'
}
}
steps{
echo 'Compiling vote app.'
dir('vote'){
sh "pip install -r requirements.txt"
}
}
}
stage('vote-test'){
agent {
docker{
image 'python:3.11-slim'
args '--user root'
}
}
steps{
echo 'Running Unit Tests on vote app.'
dir('vote'){
sh "pip install -r requirements.txt"
sh 'nosetests -v'
}
}
}
stage('vote-docker-package'){
agent any
steps{
echo 'Packaging wvoteorker app with docker'
script{
docker.withRegistry('https://index.docker.io/v1/', 'dockerlogin') {
// ./vote is the path to the Dockerfile that Jenkins will find from the Github repo
def voteImage = docker.build("okapetanios/vote:v${env.BUILD_ID}", "./vote")
voteImage.push()
voteImage.push("${env.BRANCH_NAME}")
voteImage.push("latest")
}
}
}
}
stage("result-build"){
when{
changeset "**/result/**"
}
steps{
echo 'Compiling result app'
dir('result'){
sh 'npm install'
}
}
}
stage("result-test"){
when{
changeset "**/result/**"
}
steps{
echo 'Running Unit Tests on result app'
dir('result'){
sh 'npm install && npm test'
}
}
}
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..'
}
}