Files
hudctrl/ci/Jenkinsfile
Dustin C. Hatch b9c7b0a1dd
Some checks reported errors
dustin/hudctrl/pipeline/head Something is wrong with the build of this commit
draft: ci: add ui build step
2022-07-31 10:50:21 -05:00

37 lines
873 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') {
parallel {
stage('Build Backend') {
steps {
container('python') {
dir('svc') {
sh '. ../ci/build-svc.sh'
}
}
}
}
stage('Build Frontent') {
steps {
container('node') {
dir('ui') {
sh '. ../ci/build-ui.sh'
}
}
}
}
}
}
}
}