don't update devguide and user guide from pipeline

This commit is contained in:
PX4 Build Bot 2017-10-30 15:05:37 -04:00 committed by Daniel Agar
parent afc8503260
commit 642c2ca2f5

42
Jenkinsfile vendored
View File

@ -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"'
}
}
}
}
}