Repository: incubator-ratis Updated Branches: refs/heads/master a7b29658f -> 79c880d93
RATIS-144. Build all the modules during the precommit yetus builds. Contributed by Marton Elek. Project: http://git-wip-us.apache.org/repos/asf/incubator-ratis/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ratis/commit/79c880d9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ratis/tree/79c880d9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ratis/diff/79c880d9 Branch: refs/heads/master Commit: 79c880d9326850e970d6c07ccfd9f3128d17a7e2 Parents: a7b2965 Author: Jitendra Pandey <[email protected]> Authored: Fri Nov 24 10:53:21 2017 -0800 Committer: Jitendra Pandey <[email protected]> Committed: Fri Nov 24 10:53:21 2017 -0800 ---------------------------------------------------------------------- dev-support/yetus-personality.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/79c880d9/dev-support/yetus-personality.sh ---------------------------------------------------------------------- diff --git a/dev-support/yetus-personality.sh b/dev-support/yetus-personality.sh index d700512..546e097 100644 --- a/dev-support/yetus-personality.sh +++ b/dev-support/yetus-personality.sh @@ -30,3 +30,17 @@ function personality_globals #shellcheck disable=SC2034 GITHUB_REPO="apache/incubator-ratis" } + + +## @description Queue up modules for this personality +## @audience private +## @stability evolving +## @param repostatus +## @param testtype +function personality_modules +{ + #Ratis is not a big project, we can always run everything on the whole project. + #Especially as we need the generated sources and shaded client. + clear_personality_queue + personality_enqueue_module . +} \ No newline at end of file
