PassAndroid/Jenkinsfile

27 lines
1,004 B
Text
Raw Normal View History

2016-03-08 04:04:33 +00:00
node {
2016-06-21 11:40:26 +00:00
def flavorCombination='WithMapsWithAnalyticsForPlay'
stage 'checkout'
2016-03-08 04:04:33 +00:00
checkout scm
2016-06-21 11:40:26 +00:00
stage 'assemble'
sh "./gradlew clean assemble${flavorCombination}Release"
archive 'android/build/outputs/apk/*'
stage 'lint'
sh "./gradlew lint${flavorCombination}Release"
2016-06-21 11:40:26 +00:00
publishHTML(target:[allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: 'android/build/outputs/', reportFiles: "lint-results-*Release.html", reportName: 'Lint'])
stage 'test'
sh "./gradlew test${flavorCombination}DebugUnitTest"
publishHTML(target:[allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: 'android/build/reports/tests/', reportFiles: "*/index.html", reportName: 'UnitTest'])
stage 'UITest'
lock('adb') {
sh "./gradlew spoon${flavorCombination}"
}
publishHTML(target:[allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true, reportDir: "android/build/spoon-output/${flavorCombination}DebugAndroidTest", reportFiles: 'index.html', reportName: 'Spoon'])
2016-03-08 04:04:33 +00:00
2016-03-08 04:04:33 +00:00
}