fix pipeline #22

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

4
Jenkinsfile vendored
View File

@ -5,13 +5,13 @@ pipeline {
stage('Build') {
steps {
echo 'Building..'
./gradlew clean build
sh './gradlew clean build'
}
}
stage('Test') {
steps {
echo 'Testing..'
./gradlew test
sh './gradlew test'
}
}
}