-
Notifications
You must be signed in to change notification settings - Fork 36
/
Jenkinsfile
158 lines (158 loc) · 4.09 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
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
pipeline {
agent {
kubernetes {
yamlFile 'build-agent.yaml'
defaultContainer 'maven'
idleMinutes 1
}
}
stages {
stage('Setup') {
parallel {
stage('Install Dependencies') {
steps {
container('maven') {
sh 'mvn install -DskipTests -Dspotbugs.skip=true -Ddependency-check.skip=true'
}
}
}
stage('Secrets scanner') {
steps {
container('trufflehog') {
sh 'git clone ${GIT_URL}'
sh 'cd secure-pipeline-java-demo && ls -al'
sh 'cd secure-pipeline-java-demo && trufflehog .'
sh 'rm -rf secure-pipeline-java-demo'
}
}
}
}
}
stage('Build') {
steps {
container('maven') {
sh 'mvn package'
}
}
}
stage('Static Analysis') {
parallel {
stage('Unit Tests') {
steps {
container('maven') {
sh 'mvn test'
}
}
}
stage('Dependency Checker') {
steps {
container('maven') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'mvn org.owasp:dependency-check-maven:check'
}
}
}
post {
always {
archiveArtifacts allowEmptyArchive: true, artifacts: 'target/dependency-check-report.html', fingerprint: true, onlyIfSuccessful: true
// dependencyCheckPublisher pattern: 'report.xml'
}
}
}
stage('Spot Bugs - Security') {
steps {
container('maven') {
sh 'mvn compile spotbugs:check || exit 0'
}
}
post {
always {
archiveArtifacts allowEmptyArchive: true, artifacts: 'target/spotbugsXml.xml', fingerprint: true, onlyIfSuccessful: false
}
}
}
stage('OSS License Checker') {
steps {
container('licensefinder') {
sh 'ls -al'
sh '''#!/bin/bash --login
/bin/bash --login
rvm use default
gem install license_finder
license_finder
'''
}
}
}
stage('SCA') {
steps {
container('maven') {
sh 'mvn org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom'
}
}
post {
success {
dependencyTrackPublisher projectName: 'sample-spring-app', projectVersion: '0.0.1', artifact: 'target/bom.xml', autoCreateProjects: true, synchronous: true
archiveArtifacts allowEmptyArchive: true, artifacts: 'target/bom.xml', fingerprint: true, onlyIfSuccessful: true
}
}
}
}
}
stage('Package') {
steps {
container('docker-tools') {
sh 'ls -al'
sh 'docker build . -t sample-app'
}
}
}
stage('Artefact Analysis') {
parallel {
stage('Image Scan') {
steps {
container('docker-tools') {
sh 'grype sample-app:latest'
}
}
}
stage('Image Hardening') {
steps {
container('docker-tools') {
sh 'dockle sample-app:latest'
}
}
}
stage('K8s Hardening') {
steps {
container('docker-tools') {
sh 'kubesec scan pod.yaml'
}
}
}
}
}
stage('Deploy') {
steps {
// TODO
sh "echo done"
}
}
stage('Dynamic Analysis') {
parallel {
stage('E2E tests') {
steps {
sh 'echo "All Tests passed!!!"'
}
}
stage('DAST') {
steps {
container('docker-tools') {
sh 'docker run -t owasp/zap2docker-stable zap-baseline.py -t https://www.zaproxy.org/ || exit 0'
}
}
}
}
}
}
}