Skip to content

Commit

Permalink
Jenkins rm duplicate sitl build node def, don't checkout scm for S3 u…
Browse files Browse the repository at this point in the history
…pload
  • Loading branch information
lamping7 authored and dagar committed Jun 12, 2018
1 parent fc2e7e4 commit aa625d9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down Expand Up @@ -678,19 +677,21 @@ 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'
branch 'beta'
branch 'stable'
}
}

steps {
sh 'echo "uploading to S3"'
}
Expand Down

0 comments on commit aa625d9

Please sign in to comment.