Trigger build after bladeRF build; turn off build durability; turn off concurrent builds
This commit is contained in:
parent
0a0fb46b5d
commit
dabb6fc135
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue