forked from lfs262/dso-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
119 lines (118 loc) · 2.9 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
pipeline {
agent {
kubernetes {
yamlFile 'build-agent.yaml'
defaultContainer 'maven'
idleMinutes 1
}
}
stages {
stage('Build') {
parallel {
stage('Compile') {
steps {
container('maven') {
sh 'mvn compile -Dorg.csanchez.jenkins.plugins.kubernetes.pipeline.ContainerExecDecorator.websocketConnectionTimeout=60'
}
}
}
}
}
stage('Static Analysis') {
parallel {
stage('Unit Tests') {
steps {
container('maven') {
sh 'mvn test'
}
}
}
stage('SCA') {
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('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('SAST'){
steps {
container('slscan') {
sh 'scan --type java,depscan --build'
}
}
post {
success {
archiveArtifacts allowEmptyArchive: true,
artifacts: 'reports/*', fingerprint: true, onlyIfSuccessful: true
}
}
}
}
}
stage('Package') {
parallel {
stage('Create Jarfile') {
steps {
container('maven') {
sh 'mvn package -DskipTests'
}
}
}
stage('Docker BnP') {
steps {
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache=true --destination=docker.io/korsowito/dsodemo'
}
}
}
}
}
stage('Image Analysis') {
parallel {
stage('Image Linting') {
steps {
container('docker-tools') {
sh 'dockle docker.io/korsowito/dsodemo'
}
}
}
stage('Image Scan') {
steps {
container('docker-tools') {
sh 'trivy image --exit-code 1 korsowito/dso-demo'
}
}
}
}
}
stage('Deploy to Dev') {
steps {
// TODO
sh "echo done"
}
}
}
}