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
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'
}
}
}

Loading…
Cancel
Save