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 agent any
stages { stages {
state('Clean') {
steps {
echo 'Clean..'
sh './gradlew clean'
}
}
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
sh './gradlew clean build' sh './gradlew build'
} }
} }
stage('Test') { stage('Test') {