CI: ensure 'git fetch --tags' is executed for all Firmware builds

This commit is contained in:
Beat Küng
2019-07-22 13:46:35 +02:00
parent 05ff7bb731
commit ac5669deb4
3 changed files with 7 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ pipeline {
steps {
sh 'export'
sh 'make distclean'
sh 'git fetch --tags'
sh 'ccache -z'
sh 'make px4_sitl_default'
sh 'ccache -s'
@@ -39,6 +40,7 @@ pipeline {
steps {
sh 'export'
sh 'make distclean'
sh 'git fetch --tags'
sh 'ccache -z'
sh 'make px4_fmu-v5_default'
sh 'ccache -s'
@@ -60,6 +62,7 @@ pipeline {
steps {
sh 'export'
sh 'make distclean'
sh 'git fetch --tags'
sh 'ccache -z'
sh 'make tests'
sh 'ccache -s'