From 642c2ca2f5a7bd02accccc4c07685cf7b6cb7277 Mon Sep 17 00:00:00 2001 From: PX4 Build Bot Date: Mon, 30 Oct 2017 15:05:37 -0400 Subject: [PATCH] don't update devguide and user guide from pipeline --- Jenkinsfile | 42 +++++++----------------------------------- 1 file changed, 7 insertions(+), 35 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e0860c51c4..453c739b96 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,41 +54,13 @@ pipeline { } } } - stage('Deploy') { - parallel { - stage('Dev Guide Update') { - when { - branch 'master' - } - steps { - sh 'git clone https://github.com/PX4/Devguide.git' - } - } - stage('User Guide Update') { - when { - branch 'master' - } - steps { - sh 'git clone https://github.com/PX4/px4_user_guide.git' - } - } - stage('QGC Metadata Update') { - when { - branch 'master' - } - steps { - sh 'git clone https://github.com/mavlink/qgroundcontrol.git' - } - } - stage('S3 Upload') { - when { - branch 'master|beta|stable' - } - steps { - sh 'echo "uploading to S3"' - } - } + stage('S3 Upload') { + when { + branch 'master|beta|stable' + } + steps { + sh 'echo "uploading to S3"' } } } -} +} \ No newline at end of file