Files
hudctrl/ci/Jenkinsfile
Dustin C. Hatch 3555c07aa0
Some checks failed
dustin/hudctrl/pipeline/head There was a failure building this commit
ci: Begin Jenkins build pipeline
2022-07-31 10:37:53 -05:00

24 lines
422 B
Groovy

// vim: set sw=4 ts=4 sts=4 et :
// vim: set ft=groovy :
pipeline {
agent {
kubernetes {
yamlFile 'ci/podTemplate.yaml'
}
}
stages {
stage('Build Backend') {
steps {
container('python') {
dir('svc') {
sh '. ../ci/build-svc.sh'
}
}
}
}
}
}