Last active
March 13, 2017 18:14
-
-
Save rpau/c7db63b2f792c53006dd1d5e6a07bd98 to your computer and use it in GitHub Desktop.
Jenkinsfile example
This file contains hidden or 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
| #!groovy | |
| pipeline { | |
| agent any | |
| stages { | |
| stage('Build') { | |
| steps { | |
| sh "mvn package" | |
| } | |
| } | |
| stage('Results') { | |
| steps { | |
| archive 'target/*.jar' | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment