initial default chart

This commit is contained in:
James Strachan
2018-01-16 16:12:38 +00:00
parent 92b4b16635
commit 9bc36352bf
6 changed files with 49 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,15 @@
pipeline {
agent {
label "jenkins-maven"
}
stages {
stage('Update Environment') {
steps {
container('maven') {
sh 'make install'
}
}
}
}
}