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

19 lines
337 B
Groovy

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