Skip to content

Instantly share code, notes, and snippets.

@dino-su
Created March 18, 2021 08:24
Show Gist options
  • Save dino-su/b2a77b4a0f19da8f1ff7a4a281f4f48b to your computer and use it in GitHub Desktop.
Save dino-su/b2a77b4a0f19da8f1ff7a4a281f4f48b to your computer and use it in GitHub Desktop.
Android Lint with Quality Gate.
pipeline {
agent any
stages {
stage('Git') {
steps {
git 'https://github.com/android/sunflower.git'
}
}
stage('Lint') {
steps {
sh "./gradlew lint"
}
post {
success {
recordIssues(tools: [androidLintParser(pattern: '**/lint-results-*.xml')], qualityGates: [[threshold: 100, type: 'TOTAL', unstable: false]])
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment