run tests in jenkins (#39560)

This commit is contained in:
Emmanuel Cazenave 2020-02-05 14:49:07 +01:00
parent 6b0fcffee6
commit 6a2d80af28
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored
View File

@ -3,6 +3,21 @@
pipeline {
agent any
stages {
stage('Unit Tests') {
steps {
sh 'tox -rv'
}
post {
always {
script {
utils = new Utils()
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('index.html')
}
mergeJunitResults()
}
}
}
stage('Packaging') {
steps {
script {