From dabb6fc1352741193a4026698555f94426bf25e9 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Thu, 5 Sep 2019 15:32:04 +0800 Subject: [PATCH] Trigger build after bladeRF build; turn off build durability; turn off concurrent builds --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 0b2b279..20a966b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,13 @@ node(label: 'raspberrypi') { + properties([ + pipelineTriggers([ + upstream(threshold: 'SUCCESS', + upstreamProjects: "bladeRF/${env.BRANCH_NAME}") + ]), + disableConcurrentBuilds(), + durabilityHint(hint: 'PERFORMANCE_OPTIMIZED') + ]) + def dists = ["stretch", "jessie"] def srcdir = "${WORKSPACE}/src"