1
0
Fork 0
molgenis-ops-docker-helm/Jenkinsfile

16 lines
294 B
Groovy

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