Repository: hbase Updated Branches: refs/heads/HBASE-18467 600807769 -> 31b3141e9
HBASE-18467 use single find as a work around. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/31b3141e Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/31b3141e Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/31b3141e Branch: refs/heads/HBASE-18467 Commit: 31b3141e90573ae8a15dad40dfc72bdd8051bac7 Parents: 6008077 Author: Sean Busbey <[email protected]> Authored: Tue Aug 22 20:19:11 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Tue Aug 22 20:19:11 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/31b3141e/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 08621d6..a5e4d2d 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -17,9 +17,9 @@ pipeline { agent { node { - label 'Hadoop' +// label 'Hadoop' // temp go to ubuntu since it seems like no one uses those -// label 'ubuntu' + label 'ubuntu' } } triggers { @@ -408,7 +408,8 @@ END echo " ${change.commitId}" echo " ${change.author}" echo "" - msg.findAll( /HBASE-[0-9]+/ ).each { currentIssue -> + // For now, only match the first occurrance of an HBase jira id, due to JENKINS-46358 + msg.find( /HBASE-[0-9]+/ ) { currentIssue -> echo "[DEBUG] found jira key: ${currentIssue}" if ( currentIssue in seenJiras ) { echo "[DEBUG] already commented on ${currentIssue}."
