diff --git a/Jenkinsfile b/Jenkinsfile index da04a87..f4cc54a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }