Skip to content

Commit

Permalink
Merge remote-tracking branch 'primary/master' into JENKINS-38585-step…
Browse files Browse the repository at this point in the history
…-editor
  • Loading branch information
kzantow committed Dec 2, 2016
2 parents 3ebe794 + bc3336b commit 5a1f351
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Jenkinsfile
@@ -0,0 +1,18 @@
pipeline {
agent docker:'cloudbees/java-build-tools'
stages {
stage('build') {
steps {
sh 'mvn clean install'
}
}
}
postBuild {
success {
archive 'target/blueocean-pipeline-editor.hpi'
}
always {
junit 'target/**/*.xml'
}
}
}

0 comments on commit 5a1f351

Please sign in to comment.