-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
119 lines (106 loc) · 3.19 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
@Library('Shared') _
pipeline {
agent any
environment{
SONAR_HOME = tool "Sonar"
}
stages {
stage("Workspace cleanup"){
steps{
script{
cleanWs()
}
}
}
stage('Git: Code Checkout') {
steps {
script{
code_checkout("https://github.com/DevMadhup/wanderlust.git","devops")
}
}
}
stage("OWASP: Dependency check"){
steps{
script{
owasp_dependency()
}
}
post{
success{
archiveArtifacts artifacts: '**/dependency-check-report.xml', followSymlinks: false, onlyIfSuccessful: true
}
}
}
stage("Trivy: Filesystem scan"){
steps{
script{
trivy_scan()
}
}
}
stage("SonarQube: Code Analysis"){
steps{
script{
sonarqube_analysis("Sonar","wanderlust","wanderlust")
}
}
}
stage("SonarQube: Code Quality Gates"){
steps{
script{
sonarqube_code_quality()
}
}
}
stage('Exporting environment variables') {
parallel{
stage("Backend env setup"){
steps {
script{
dir("Automations"){
sh "bash updateBackend.sh"
}
}
}
}
stage("Frontend env setup"){
steps {
script{
dir("Automations"){
sh "bash updateFrontend.sh"
}
}
}
}
}
}
stage("Docker: Build Images"){
steps{
script{
dir('backend'){
docker_build("backend-wanderlust","test-image-donot-use","madhupdevops")
}
dir('frontend'){
docker_build("frontend-wanderlust","test-image-donot-use","madhupdevops")
}
}
}
}
stage("Docker: Push to DockerHub"){
steps{
script{
docker_push("backend-wanderlust","test-image-donot-use","madhupdevops")
docker_push("frontend-wanderlust","test-image-donot-use","madhupdevops")
}
}
}
}
post{
success{
build job: "Wanderlust-CD", parameters: [
string(name: 'FRONTEND_DOCKER_TAG', value: "test-image-donot-use"),
string(name: 'BACKEND_DOCKER_TAG', value: "test-image-donot-use")
]
}
}
}