-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
97 lines (83 loc) · 1.97 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
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"
publishHTML (target: [
reportDir: 'build/reports/jacoco/test/html',
reportFiles: 'index.html',
reportName: "JaCoCo Report" ])
sh "./gradlew jacocoTestCoverageVerification"
}
}
stage("Static code analysis") {
steps {
sh "./gradlew checkstyleMain"
publishHTML (target: [
reportDir: 'build/reports/checkstyle/',
reportFiles: 'main.html',
reportName: "Checkstyle Report" ])
}
}
stage("Build") {
steps {
sh "./gradlew build"
}
}
stage("Docker build") {
steps {
sh "docker build -t leszko/calculator:${BUILD_TIMESTAMP} ."
}
}
stage("Docker login") {
steps {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'leszko',
usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
sh "docker login --username $USERNAME --password $PASSWORD"
}
}
}
stage("Docker push") {
steps {
sh "docker push leszko/calculator:${BUILD_TIMESTAMP}"
}
}
stage("Deploy to staging") {
steps {
sh "ansible-playbook playbook.yml -i inventory/staging"
sleep 60
}
}
stage("Acceptance test") {
steps {
sh "./acceptance_test.sh 192.168.0.166"
}
}
// Performance test stages
stage("Release") {
steps {
sh "ansible-playbook playbook.yml -i inventory/production"
sleep 60
}
}
stage("Smoke test") {
steps {
sh "./smoke_test.sh 192.168.0.115"
}
}
}
}