ci: Begin Jenkins build pipeline
Some checks failed
dustin/hudctrl/pipeline/head There was a failure building this commit
Some checks failed
dustin/hudctrl/pipeline/head There was a failure building this commit
This commit is contained in:
23
ci/Jenkinsfile
vendored
Normal file
23
ci/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user