You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/08/24 08:33:21 UTC

[hbase] branch branch-2.2 updated: HBASE-22911 reduce concurrent PR builds.

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 17cf5b0  HBASE-22911 reduce concurrent PR builds.
17cf5b0 is described below

commit 17cf5b00440c736db3f0a266ddf4998d5581e8a2
Author: Sean Busbey <bu...@apache.org>
AuthorDate: Sat Aug 24 00:19:15 2019 -0500

    HBASE-22911 reduce concurrent PR builds.
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 dev-support/Jenkinsfile_GitHub | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-support/Jenkinsfile_GitHub b/dev-support/Jenkinsfile_GitHub
index b67afa1..63cadeb 100644
--- a/dev-support/Jenkinsfile_GitHub
+++ b/dev-support/Jenkinsfile_GitHub
@@ -18,10 +18,12 @@
 pipeline {
 
     agent {
-        label 'Hadoop || ubuntu'
+        label 'Hadoop'
     }
 
     options {
+        // N.B. this is per-branch, which means per PR
+        disableConcurrentBuilds()
         buildDiscarder(logRotator(numToKeepStr: '15'))
         timeout (time: 7, unit: 'HOURS')
         timestamps()