fix pipeline #22

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

18
Jenkinsfile vendored
View File

@ -2,22 +2,10 @@ pipeline {
agent any
stages {
stage('Clean') {
steps {
echo 'Clean..'
sh './gradlew clean'
}
}
stage('Build') {
steps {
echo 'Building..'
sh './gradlew build'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh './gradlew test'
withChecks(name: 'Test', includeStage: true) {
sh './gradlew clean test'
junit '**/build/test-results/test/TEST-*.xml'
}
}
}