From aa625d9af880e3be7bd2ddd7ed49d10c74c6ada4 Mon Sep 17 00:00:00 2001 From: Anthony Lamping Date: Tue, 12 Jun 2018 18:20:00 -0400 Subject: [PATCH] Jenkins rm duplicate sitl build node def, don't checkout scm for S3 upload --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ed793bf004..57063076f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -64,7 +64,6 @@ pipeline { builds[node_name] = createBuildNode(docker_nuttx, "${node_name}_default") } - builds["sitl"] = createBuildNode(docker_base, 'posix_sitl_default') builds["sitl_rtps"] = createBuildNode(docker_base, 'posix_sitl_rtps') builds["sitl (GCC 7)"] = createBuildNode(docker_arch, 'posix_sitl_default') @@ -678,11 +677,14 @@ pipeline { } } + // TODO: actually upload artifacts to S3 stage('S3 Upload') { agent { docker { image 'px4io/px4-dev-base:2018-03-30' } } - + options { + skipDefaultCheckout() + } when { anyOf { branch 'master' @@ -690,7 +692,6 @@ pipeline { branch 'stable' } } - steps { sh 'echo "uploading to S3"' }