fix pipeline #22

Closed
bquarkz wants to merge 10 commits from fix/pipeline into master
Showing only changes of commit 124d9a5a9b - Show all commits

8
Jenkinsfile vendored
View File

@ -2,10 +2,16 @@ pipeline {
agent any
stages {
state('Clean') {
steps {
echo 'Clean..'
sh './gradlew clean'
}
}
stage('Build') {
steps {
echo 'Building..'
sh './gradlew clean build'
sh './gradlew build'
}
}
stage('Test') {