From 2e390009f0ade1fb26b6f2cb1f3ab0e0d289425f Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Mon, 5 Apr 2021 09:24:21 -0400 Subject: [PATCH] Jenkins: fetch all tags before make documentation (master only) --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4cdc252ff6..fd4e29edd1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -127,6 +127,7 @@ pipeline { } steps { sh 'make distclean' + sh 'git fetch --all --tags' sh 'make module_documentation' dir('build/px4_sitl_default/docs') { archiveArtifacts(artifacts: 'modules/*.md') @@ -150,6 +151,7 @@ pipeline { steps { sh 'export' sh 'make distclean' + sh 'git fetch --all --tags' sh 'make uorb_graphs' dir('Tools/uorb_graph') { archiveArtifacts(artifacts: 'graph_px4_sitl.json')