chore: debug Jenkins
ZeroDownTime/jenkins-podman/pipeline/head There was a failure building this commit Details

This commit is contained in:
Stefan Reimer 2022-01-13 15:17:18 +01:00
parent df98cb7b25
commit d3a95d6e0d
1 changed files with 4 additions and 3 deletions

7
Jenkinsfile vendored
View File

@ -9,7 +9,7 @@ pipeline {
}
stage('Scan'){
environment {
TRIVY_TEMPLATE = "@${env.WORKSPACE}/html.tpl"
TRIVY_TEMPLATE = "@${env.JENKINS_AGENT_WORKDIR}/html.tpl"
TRIVY_FORMAT = "template"
TRIVY_OUTPUT = "reports/trivy.html"
}
@ -18,14 +18,15 @@ pipeline {
sh 'mkdir -p reports'
sh 'env'
sh 'make scan'
sh 'ls -laR reports'
publishHTML target : [
allowMissing: true,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: 'reports',
reportFiles: 'trivy.html',
reportName: 'Trivy Scan',
reportTitles: 'Trivy Scan'
reportName: 'TrivyScan',
reportTitles: 'TrivyScan'
]
// Scan again and fail on CRITICAL vulns