switch to using the new helm steps

This commit is contained in:
James Strachan
2018-06-22 14:08:09 +01:00
committed by GitHub
parent aa1263823a
commit 5bae498880

8
Jenkinsfile vendored
View File

@@ -8,7 +8,9 @@ pipeline {
stage('Validate Environment') {
steps {
container('maven') {
sh 'make build'
dir('env') {
sh 'jx step helm build'
}
}
}
}
@@ -18,7 +20,9 @@ pipeline {
}
steps {
container('maven') {
sh 'make install'
dir('env') {
sh 'jx step helm apply'
}
}
}
}