Jenkinsfile should git-checkout submodules
gitea.matetelki.eu/webfish/master There was a failure building this commit Details

master
denes 6 years ago
parent 0ac5ec158f
commit 68b253761a
Signed by: denes
GPG Key ID: A7D50EAD42F9FC9F

10
Jenkinsfile vendored

@ -2,10 +2,16 @@ pipeline {
agent any agent any
stages { stages {
stage('Cloning git sumbodules') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Compile') { stage('Compile') {
steps { steps {
echo 'Building..' sh 'cmake .'
sh 'cmake . && make' sh 'make -j 4'
} }
} }
} }

Loading…
Cancel
Save