Repository: hbase Updated Branches: refs/heads/HBASE-18467 31b3141e9 -> 664e36cf6
HBASE-18467 trying to get StringGroovyMethods instead of DefaultGroovyMethods Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/664e36cf Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/664e36cf Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/664e36cf Branch: refs/heads/HBASE-18467 Commit: 664e36cf664dd0292869806470b2a9855b748cb5 Parents: 31b3141 Author: Sean Busbey <[email protected]> Authored: Tue Aug 22 20:39:59 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Tue Aug 22 20:39:59 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/664e36cf/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index a5e4d2d..ddb226a 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -409,7 +409,7 @@ END echo " ${change.author}" echo "" // For now, only match the first occurrance of an HBase jira id, due to JENKINS-46358 - msg.find( /HBASE-[0-9]+/ ) { currentIssue -> + msg = msg.find( /HBASE-[0-9]+/ ) { currentIssue -> echo "[DEBUG] found jira key: ${currentIssue}" if ( currentIssue in seenJiras ) { echo "[DEBUG] already commented on ${currentIssue}." @@ -418,6 +418,7 @@ END jiraComment issueKey: currentIssue, body: comment seenJiras << currentIssue } + "" } //TODO warn if no JIRA key found in message, email committer }
