Jenkins generate uorb graphs (#8571)

This commit is contained in:
Daniel Agar 2018-01-05 17:20:39 -05:00 committed by GitHub
parent 31ab496f31
commit f86d4b18f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored
View File

@ -621,6 +621,16 @@ pipeline {
archiveArtifacts(artifacts: 'modules/*.md', fingerprint: true)
}
}
stage('uorb graphs') {
agent {
docker { image 'px4io/px4-dev-nuttx:2017-12-30' }
}
steps {
sh 'make uorb_graphs'
archiveArtifacts(artifacts: 'Tools/uorb_graph/graph_sitl.json')
}
}
}
}