diff options
author | Tim Rozet <trozet@redhat.com> | 2017-08-28 12:19:08 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-08-28 12:23:12 -0400 |
commit | 3616a16bd3ae8d00260d9011530efd5546184006 (patch) | |
tree | 9c5ac2428806b5644a483fab7028fadd614c893e /jjb | |
parent | 40e3263b0ccf07f62b826d10c4f6c7b4992be4e1 (diff) |
Apex: limits verify per node to 1
This will limit how many simultaneous builds we can do at a time on
build server, but will stop the bug we are hitting where deploy (next
job) and functest (current job) start at the same time by blocking
parent jobs.
Change-Id: If23ce857d7ef043c408b0eb6a74357ce1278e4b9
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/apex/apex.yml | 14 | ||||
-rw-r--r-- | jjb/apex/apex.yml.j2 | 14 |
2 files changed, 24 insertions, 4 deletions
diff --git a/jjb/apex/apex.yml b/jjb/apex/apex.yml index 679d1e306..82062c6f9 100644 --- a/jjb/apex/apex.yml +++ b/jjb/apex/apex.yml @@ -248,8 +248,13 @@ properties: - logrotate-default + - build-blocker: + use-build-blocker: true + block-level: 'NODE' + blocking-jobs: + - 'apex-verify.*' - throttle: - max-per-node: 3 + max-per-node: 1 max-total: 10 option: 'project' @@ -375,8 +380,13 @@ properties: - logrotate-default + - build-blocker: + use-build-blocker: true + block-level: 'NODE' + blocking-jobs: + - 'apex-verify.*' - throttle: - max-per-node: 3 + max-per-node: 1 max-total: 10 option: 'project' diff --git a/jjb/apex/apex.yml.j2 b/jjb/apex/apex.yml.j2 index 2830d3510..16b025500 100644 --- a/jjb/apex/apex.yml.j2 +++ b/jjb/apex/apex.yml.j2 @@ -160,8 +160,13 @@ properties: - logrotate-default + - build-blocker: + use-build-blocker: true + block-level: 'NODE' + blocking-jobs: + - 'apex-verify.*' - throttle: - max-per-node: 3 + max-per-node: 1 max-total: 10 option: 'project' @@ -287,8 +292,13 @@ properties: - logrotate-default + - build-blocker: + use-build-blocker: true + block-level: 'NODE' + blocking-jobs: + - 'apex-verify.*' - throttle: - max-per-node: 3 + max-per-node: 1 max-total: 10 option: 'project' |