Skip to content
Snippets Groups Projects
Commit d7a7a1bc authored by Stefan E. Funk's avatar Stefan E. Funk
Browse files

mc

parent 68fc65d7
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,16 @@ node {
}
stage('Build') {
sh "git submodule init"
sh "'${mvnHome}/bin/mvn' -U clean verify -Ptextgrid.deb"
sh '''
echo "===> Initialising submodules"
git submodule init
echo "===> Updating submodules"
git submodule update --force --remote &&
echo "===> Compiling and building DEB package"
$mvnHome/bin/mvn -U clean verify -Ptextgrid.deb
'''
}
stage('Publish') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment