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:36:57 UTC

[hbase] branch branch-1.3 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-1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit cdfd3fae820b266c772c2118f09ee738bc14db49
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 7cd57b1..8bba063 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()