Last active
September 18, 2017 20:36
-
-
Save david-bc/af1a307514cd7eea15ee3cdceb0d9c30 to your computer and use it in GitHub Desktop.
Development Pipeline Scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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