Browse Source

Jenkins generate uorb graphs (#8571)

sbg
Daniel Agar 7 years ago committed by GitHub
parent
commit
f86d4b18f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      Jenkinsfile

10
Jenkinsfile vendored

@ -621,6 +621,16 @@ pipeline {
archiveArtifacts(artifacts: 'modules/*.md', fingerprint: true) 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')
}
}
} }
} }

Loading…
Cancel
Save