Compare commits

..

No commits in common. "76a4738682524a1d6a22957c29036aedb61f64ed" and "64b70fabff05a32ba474bfe6f6e4e4c568313d85" have entirely different histories.

7
Jenkinsfile vendored
View File

@ -1,6 +1,13 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
script {
sh "sh ./gradlew clean test"
}
}
}
stage('Build') {
steps {
script {