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

19 lines
332 B
Plaintext
Raw Normal View History

2018-09-28 17:32:01 +02:00
pipeline {
agent {
kubernetes {
label 'helm'
}
}
environment {
}
stages {
stage('Retrieve build secrets') {
steps {
container('chart-testing') {
chart_test.sh --no-install --all
}
}
}
}
}