Skip to content

Commit 564bbea

Browse files
committed
Format jenkinsfile
1 parent 3fee634 commit 564bbea

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Jenkinsfile

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
pipeline {
22
agent any
33
stages {
4-
stage('build / test') {
4+
stage('Test') {
55
steps {
66
sh './gradlew check --no-daemon'
77
}
88
}
99
}
10-
}
10+
post {
11+
always {
12+
junit '**/build/test-results/**/*.xml'
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)