Repository: spark Updated Branches: refs/heads/branch-2.4 48e2e6fcc -> c8b94099a
[SPARK-25671] Build external/spark-ganglia-lgpl in Jenkins Test ## What changes were proposed in this pull request? Currently, we do not build external/spark-ganglia-lgpl in Jenkins tests when the code is changed. ## How was this patch tested? N/A Closes #22658 from gatorsmile/buildGanglia. Authored-by: gatorsmile <[email protected]> Signed-off-by: gatorsmile <[email protected]> (cherry picked from commit 8bb242902760535d12c6c40c5d8481a98fdc11e0) Signed-off-by: gatorsmile <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c8b94099 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c8b94099 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c8b94099 Branch: refs/heads/branch-2.4 Commit: c8b94099a88763e6609966ef0dbf160ecbfe33d8 Parents: 48e2e6f Author: gatorsmile <[email protected]> Authored: Sat Oct 6 15:49:41 2018 -0700 Committer: gatorsmile <[email protected]> Committed: Sat Oct 6 15:49:55 2018 -0700 ---------------------------------------------------------------------- dev/sparktestsupport/modules.py | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c8b94099/dev/sparktestsupport/modules.py ---------------------------------------------------------------------- diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py index e267fbf..e7ac063 100644 --- a/dev/sparktestsupport/modules.py +++ b/dev/sparktestsupport/modules.py @@ -557,6 +557,16 @@ kubernetes = Module( sbt_test_goals=["kubernetes/test"] ) + +spark_ganglia_lgpl = Module( + name="spark-ganglia-lgpl", + dependencies=[], + build_profile_flags=["-Pspark-ganglia-lgpl"], + source_file_regexes=[ + "external/spark-ganglia-lgpl", + ] +) + # The root module is a dummy module which is used to run all of the tests. # No other modules should directly depend on this module. root = Module( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
