-
Notifications
You must be signed in to change notification settings - Fork 97
/
Jenkinsfile
90 lines (83 loc) · 2.58 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
pipeline {
agent any
triggers {
pollSCM('* * * * *')
}
stages {
stage("Compile") {
steps {
sh "./gradlew compileJava"
}
}
stage("Unit test") {
steps {
sh "./gradlew test"
}
}
stage("Code coverage") {
steps {
sh "./gradlew jacocoTestReport"
sh "./gradlew jacocoTestCoverageVerification"
}
}
stage("Static code analysis") {
steps {
sh "./gradlew checkstyleMain"
}
}
stage("Package") {
steps {
sh "./gradlew build"
}
}
stage("Docker build") {
steps {
sh "docker build -t leszko/calculator:${BUILD_TIMESTAMP} ."
}
}
stage("Docker login") {
steps {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'docker-hub-credentials',
usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
sh "docker login --username $USERNAME --password $PASSWORD"
}
}
}
stage("Docker push") {
steps {
sh "docker push leszko/calculator:${BUILD_TIMESTAMP}"
}
}
stage("Update version") {
steps {
sh "sed -i 's/{{VERSION}}/${BUILD_TIMESTAMP}/g' calculator.yaml"
}
}
stage("Deploy to staging") {
steps {
sh "kubectl config use-context staging"
sh "kubectl apply -f hazelcast.yaml"
sh "kubectl apply -f calculator.yaml"
}
}
stage("Acceptance test") {
steps {
sleep 60
sh "chmod +x acceptance-test.sh && ./acceptance-test.sh"
}
}
stage("Release") {
steps {
sh "kubectl config use-context production"
sh "kubectl apply -f hazelcast.yaml"
sh "kubectl apply -f calculator.yaml"
}
}
stage("Smoke test") {
steps {
sleep 60
sh "chmod +x smoke-test.sh && ./smoke-test.sh"
}
}
}
}