Update Jenkinsfile

This commit is contained in:
Andrea Cavalli 2020-10-11 17:19:35 +02:00
parent d3f8b6c485
commit 98286410df

6
Jenkinsfile vendored
View File

@ -54,7 +54,8 @@ pipeline {
} }
} }
steps { steps {
sh "mvn -s $MVN_SET -B deploy" sh "cd tdlib; mvn -s $MVN_SET -B deploy"
sh "cd tdlight; mvn -s $MVN_SET -B deploy"
} }
} }
@ -75,7 +76,8 @@ pipeline {
sh "cd ${workspace}" sh "cd ${workspace}"
sh "git add --all || true" sh "git add --all || true"
sh "git commit -m \"Add generated files\" || true" sh "git commit -m \"Add generated files\" || true"
sh "mvn -s $MVN_SET -DpushChanges=false -DlocalCheckout=true -DpreparationGoals=initialize release:prepare release:perform -B" sh "cd tdlib; mvn -s $MVN_SET -DpushChanges=false -DlocalCheckout=true -DpreparationGoals=initialize release:prepare release:perform -B"
sh "cd tdlight; mvn -s $MVN_SET -DpushChanges=false -DlocalCheckout=true -DpreparationGoals=initialize release:prepare release:perform -B"
} }
} }
} }