forked from lerndevops/samplejavaapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCICD.gvy
More file actions
74 lines (73 loc) · 2.65 KB
/
CICD.gvy
File metadata and controls
74 lines (73 loc) · 2.65 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
pipeline {
agent any
stages {
stage('compile') {
steps {
// step1
echo 'compiling..'
git url: 'https://github.com/lerndevops/samplejavaapp'
sh script: '/opt/apache-maven-3.8.4/bin/mvn compile'
}
}
stage('codereview-pmd') {
steps {
// step2
echo 'codereview..'
sh script: '/opt/apache-maven-3.8.4/bin/mvn -P metrics pmd:pmd'
}
post {
success {
recordIssues enabledForFailure: true, tool: pmdParser(pattern: '**/target/pmd.xml')
}
}
}
stage('unit-test') {
steps {
// step3
echo 'unittest..'
sh script: '/opt/apache-maven-3.8.4/bin/mvn test'
}
post {
success {
junit 'target/surefire-reports/*.xml'
}
}
}
stage('codecoverage') {
tools {
jdk 'java1.8'
}
steps {
// step4
echo 'codecoverage..'
sh script: '/opt/apache-maven-3.8.4/bin/mvn cobertura:cobertura -Dcobertura.report.format=xml'
}
post {
success {
cobertura autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'target/site/cobertura/coverage.xml', conditionalCoverageTargets: '70, 0, 0', failUnhealthy: false, failUnstable: false, lineCoverageTargets: '80, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '80, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
}
}
}
stage('package/build-war') {
steps {
// step5
echo 'package......'
sh script: '/opt/apache-maven-3.8.4/bin/mvn package'
}
}
stage('build & push docker image') {
steps {
withDockerRegistry(credentialsId: 'DOCKER_HUB_LOGIN', url: 'https://index.docker.io/v1/') {
sh script: 'cd $WORKSPACE'
sh script: 'docker build --file Dockerfile --tag docker.io/lerndevops/samplejavaapp:$BUILD_NUMBER .'
sh script: 'docker push docker.io/lerndevops/samplejavaapp:$BUILD_NUMBER'
}
}
}
stage('deploy-QA') {
steps {
sh script: 'sudo ansible-playbook --inventory /tmp/myinv $WORKSPACE/deploy/deploy-kube.yml --extra-vars "env=qa build=$BUILD_NUMBER"'
}
}
}
}