1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Fleur Kelpin 25075b99ec chore: Add Jenkinsfile 2018-09-28 17:41:17 +02:00
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent {
kubernetes {
label 'helm'
}
}
stages {
stage('Test') {
steps {
container('chart-testing') {
sh "chart_test.sh --no-install --all"
}
}
}
}
}