Skip to content

Instantly share code, notes, and snippets.

@rpau
Last active March 13, 2017 18:14
Show Gist options
  • Select an option

  • Save rpau/c7db63b2f792c53006dd1d5e6a07bd98 to your computer and use it in GitHub Desktop.

Select an option

Save rpau/c7db63b2f792c53006dd1d5e6a07bd98 to your computer and use it in GitHub Desktop.
Jenkinsfile example
#!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