chore: build examples as part of CI build process to capture compile errors

This commit is contained in:
Richard Ramos 2023-09-05 11:18:59 -04:00 committed by richΛrd
parent d13b1f0aa3
commit 7fbb9ebe42
1 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,12 @@ pipeline {
} } }
}
stage('Build examples') {
steps { script { dir(env.REPO) {
nix.develop('make build-example')
} } }
}
stage('Package') {
steps { script { dir(env.REPO) {
dir('./scripts/linux') {