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
Vendored
+10
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')
}
}
}
}