diff --git a/Jenkinsfile b/Jenkinsfile index 2e3d40e..87c6b63 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,11 +12,15 @@ pipeline { } stage('compile'){ - sh 'echo "fake-compiling..."' + steps{ + sh 'echo "fake-compiling..."' + } } stage('deploySONAR'){ - sh 'sonar-scanner' + steps{ + sh 'sonar-scanner' + } } } post {