Skip to content

Instantly share code, notes, and snippets.

@david-bc
Last active September 18, 2017 20:36
Show Gist options
  • Save david-bc/af1a307514cd7eea15ee3cdceb0d9c30 to your computer and use it in GitHub Desktop.
Save david-bc/af1a307514cd7eea15ee3cdceb0d9c30 to your computer and use it in GitHub Desktop.
Development Pipeline Scripts
node {
stage('Build & Unit Test') {
gradle.run 'clean build'
}
stage('Code Quality') {
withSonarQubeEnv('SonarQube') {
gradle.run 'sonarqube --info'
}
}
stage('Docker Image Push') {
gradle.run 'dockerPushForIntegration'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment