diff --git a/Jenkinsfile b/Jenkinsfile index 6f150e7..037e19b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,17 +2,17 @@ pipeline { - stages { - stage ('checkout VCS') { - steps { + stages{ + stage('checkout VCS'){ + steps{ checkout scm } - stage ('compile') { + stage('compile'){ sh 'make' } - stage ('deploySONAR') { + stage('deploySONAR'){ sh 'sonar-scanner' } }