From fccb56d76b68679c50bbd758de5b64cbc2bc2539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Wed, 28 Jul 2021 22:07:34 +0200 Subject: [PATCH] Jenkinsfile: deploy uorb graph --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5449525611..435224d5d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -174,8 +174,8 @@ pipeline { sh 'git fetch --all --tags' sh 'make uorb_graphs' dir('Tools/uorb_graph') { - archiveArtifacts(artifacts: 'graph_px4_sitl.json') - stash includes: 'graph_px4_sitl.json', name: 'uorb_graph' + archiveArtifacts(artifacts: 'graph_*.json') + stash includes: 'graph_*.json', name: 'uorb_graph' } } post { @@ -202,11 +202,13 @@ pipeline { unstash 'metadata_parameters' unstash 'metadata_module_documentation' unstash 'msg_documentation' + unstash 'uorb_graph' withCredentials([usernamePassword(credentialsId: 'px4buildbot_github_personal_token', passwordVariable: 'GIT_PASS', usernameVariable: 'GIT_USER')]) { sh('git clone https://${GIT_USER}:${GIT_PASS}@github.com/PX4/px4_user_guide.git') sh('cp airframes.md px4_user_guide/en/airframes/airframe_reference.md') sh('cp parameters.md px4_user_guide/en/advanced_config/parameter_reference.md') sh('cp -R modules/*.md px4_user_guide/en/modules/') + sh('cp -R graph_*.json px4_user_guide/.vuepress/public/en/middleware/') sh('cp -R msg_docs/*.md px4_user_guide/en/msg_docs/') sh('cd px4_user_guide; git status; git add .; git commit -a -m "Update PX4 Firmware metadata `date`" || true') sh('cd px4_user_guide; git push origin master || true')