jenkins-podman/Jenkinsfile
Stefan Reimer c0f6d6781d
Some checks reported errors
ZeroDownTime/jenkins-podman/pipeline/head Something is wrong with the build of this commit
chore: debug Jenkins
2022-01-13 15:02:20 +01:00

41 lines
1008 B
Groovy

pipeline {
// agent { node { label 'podman && trivy && aws' } }
agent any
stages {
stage('Build'){
steps {
sh 'make build'
}
}
stage('Scan'){
environment {
TRIVY_TEMPLATE = "@${env.WORKSPACE}/html.tpl"
TRIVY_FORMAT = "template"
TRIVY_OUTPUT = "reports/trivy.html"
}
steps {
// Scan via trivy
sh 'mkdir -p reports'
sh 'make scan'
publishHTML target : [
allowMissing: true,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: 'reports',
reportFiles: 'trivy.html',
reportName: 'Trivy Scan',
reportTitles: 'Trivy Scan'
]
// Scan again and fail on CRITICAL vulns
sh 'TRIVY_EXIT_CODE=1 TRIVY_SEVERITY=CRITICAL make scan'
}
}
stage('Push'){
steps {
sh 'make push'
}
}
}
}