mirror of https://github.com/tikv/client-java.git
check format (#123)
Signed-off-by: marsishandsome <marsishandsome@gmail.com>
This commit is contained in:
parent
25e0ab3b14
commit
f7aa9c6cfc
|
|
@ -20,6 +20,22 @@ def call(ghprbActualCommit, ghprbPullId, ghprbPullTitle, ghprbPullLink, ghprbPul
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Format') {
|
||||||
|
dir("/home/jenkins/agent/git/client-java") {
|
||||||
|
sh """
|
||||||
|
mvn com.coveo:fmt-maven-plugin:format
|
||||||
|
git diff --quiet
|
||||||
|
formatted="\$?"
|
||||||
|
if [[ "\${formatted}" -eq 1 ]]
|
||||||
|
then
|
||||||
|
echo "code format error, please run the following commands:"
|
||||||
|
echo " mvn com.coveo:fmt-maven-plugin:format"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
dir("/home/jenkins/agent/git/client-java") {
|
dir("/home/jenkins/agent/git/client-java") {
|
||||||
timeout(30) {
|
timeout(30) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue