ci: Build package

This commit is contained in:
2022-06-22 20:53:27 -05:00
parent a7a779b2f6
commit a767ed66a5
2 changed files with 16 additions and 1 deletions

15
ci/Jenkinsfile vendored
View File

@@ -73,5 +73,20 @@ pipeline {
}
}
stage('Package') {
steps {
sh 'make package'
}
}
}
post {
success {
dir('_build') {
archiveArtifacts 'metricspi.tar'
}
}
}
}