YETUS-535. ratis project personality (addendum)
Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/2b9f425a Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/2b9f425a Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/2b9f425a Branch: refs/heads/master Commit: 2b9f425ab46716045bae40604a102ad6e5b0f27f Parents: 0d6f7d3 Author: Allen Wittenauer <[email protected]> Authored: Fri Aug 18 12:17:51 2017 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Fri Aug 18 12:18:00 2017 -0700 ---------------------------------------------------------------------- precommit/personality/ratis.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/2b9f425a/precommit/personality/ratis.sh ---------------------------------------------------------------------- diff --git a/precommit/personality/ratis.sh b/precommit/personality/ratis.sh new file mode 100755 index 0000000..d700512 --- /dev/null +++ b/precommit/personality/ratis.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +personality_plugins "all" + +## @description Globals specific to this personality +## @audience private +## @stability evolving +function personality_globals +{ + # shellcheck disable=SC2034 + BUILDTOOL=maven + #shellcheck disable=SC2034 + PATCH_BRANCH_DEFAULT=master + #shellcheck disable=SC2034 + JIRA_ISSUE_RE='^RATIS-[0-9]+$' + #shellcheck disable=SC2034 + GITHUB_REPO="apache/incubator-ratis" +}
