diff --git a/Jenkinsfile b/Jenkinsfile index 037e19b..2e3d40e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,20 +2,22 @@ pipeline { + agent any + stages{ stage('checkout VCS'){ steps{ checkout scm } + } - stage('compile'){ - sh 'make' - } + stage('compile'){ + sh 'echo "fake-compiling..."' + } - stage('deploySONAR'){ - sh 'sonar-scanner' - } - } + stage('deploySONAR'){ + sh 'sonar-scanner' + } } post { unstable {