Skip to content

Commit 11e21cc

Browse files
author
Marcelo Vanzin
committed
[SPARK-28187][BUILD] Add support for hadoop-cloud to the PR builder.
Closes apache#24987 from vanzin/SPARK-28187. Authored-by: Marcelo Vanzin <[email protected]> Signed-off-by: Marcelo Vanzin <[email protected]>
1 parent 6af47b9 commit 11e21cc

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

dev/sparktestsupport/modules.py

+7
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,13 @@ def __hash__(self):
546546
sbt_test_goals=["kubernetes/test"]
547547
)
548548

549+
hadoop_cloud = Module(
550+
name="hadoop-cloud",
551+
dependencies=[],
552+
source_file_regexes=["hadoop-cloud"],
553+
build_profile_flags=["-Phadoop-cloud"],
554+
sbt_test_goals=["hadoop-cloud/test"]
555+
)
549556

550557
spark_ganglia_lgpl = Module(
551558
name="spark-ganglia-lgpl",

hadoop-cloud/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@
2828

2929
<artifactId>spark-hadoop-cloud_2.12</artifactId>
3030
<packaging>jar</packaging>
31-
<name>Spark Project Cloud Integration through Hadoop Libraries</name>
31+
<name>Spark Project Hadoop Cloud Integration</name>
3232
<description>
33-
Contains support for cloud infrastructures, specifically the Hadoop JARs and
34-
transitive dependencies needed to interact with the infrastructures,
35-
making everything consistent with Spark's other dependencies.
33+
Contains Hadoop JARs and transitive dependencies needed to interact with cloud infrastructures.
3634
</description>
3735
<properties>
3836
<sbt.project.name>hadoop-cloud</sbt.project.name>

0 commit comments

Comments
 (0)