diff --git a/Jenkinsfile b/Jenkinsfile index b109611..f310114 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,10 +2,16 @@ pipeline { agent any stages { + stage('Cloning git sumbodules') { + steps { + sh 'git submodule update --init --recursive' + } + } + stage('Compile') { steps { - echo 'Building..' - sh 'cmake . && make' + sh 'cmake .' + sh 'make -j 4' } } }