chore: debug Jenkins
ZeroDownTime/jenkins-podman/pipeline/head This commit looks good Details

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

5
Jenkinsfile vendored
View File

@ -1,6 +1,6 @@
pipeline {
// agent { node { label 'podman && trivy && aws' } }
agent any
agent { node { label 'podman' } }
stages {
stage('Build'){
steps {
@ -16,6 +16,7 @@ pipeline {
steps {
// Scan via trivy
sh 'mkdir -p reports'
sh 'env'
sh 'make scan'
publishHTML target : [
allowMissing: true,
@ -33,7 +34,7 @@ pipeline {
}
stage('Push'){
steps {
sh 'make push'
sh 'echo make push'
}
}
}