aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests-jenkins.py
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2016-01-03 22:05:02 -0800
committerJosh Rosen <joshrosen@databricks.com>2016-01-03 22:05:02 -0800
commit0d165ec2050aa06aa545d74c8d7c2ff197fa02de (patch)
tree5819b076d2339b64d51ef44168f5c9b87f1da44b /dev/run-tests-jenkins.py
parent84f8492c1555bf8ab44c9818752278f61768eb16 (diff)
downloadspark-0d165ec2050aa06aa545d74c8d7c2ff197fa02de.tar.gz
spark-0d165ec2050aa06aa545d74c8d7c2ff197fa02de.tar.bz2
spark-0d165ec2050aa06aa545d74c8d7c2ff197fa02de.zip
[SPARK-12612][PROJECT-INFRA] Add missing Hadoop profiles to dev/run-tests-*.py scripts and dev/deps
There are a couple of places in the `dev/run-tests-*.py` scripts which deal with Hadoop profiles, but the set of profiles that they handle does not include all Hadoop profiles defined in our POM. Similarly, the `hadoop-2.2` and `hadoop-2.6` profiles were missing from `dev/deps`. This patch updates these scripts to include all four Hadoop profiles defined in our POM. Author: Josh Rosen <joshrosen@databricks.com> Closes #10565 from JoshRosen/add-missing-hadoop-profiles-in-test-scripts.
Diffstat (limited to 'dev/run-tests-jenkins.py')
-rwxr-xr-xdev/run-tests-jenkins.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/dev/run-tests-jenkins.py b/dev/run-tests-jenkins.py
index 6501721572..c44e522c04 100755
--- a/dev/run-tests-jenkins.py
+++ b/dev/run-tests-jenkins.py
@@ -168,6 +168,10 @@ def main():
os.environ["AMPLAB_JENKINS_BUILD_PROFILE"] = "hadoop2.2"
if "test-hadoop2.3" in ghprb_pull_title:
os.environ["AMPLAB_JENKINS_BUILD_PROFILE"] = "hadoop2.3"
+ if "test-hadoop2.4" in ghprb_pull_title:
+ os.environ["AMPLAB_JENKINS_BUILD_PROFILE"] = "hadoop2.4"
+ if "test-hadoop2.6" in ghprb_pull_title:
+ os.environ["AMPLAB_JENKINS_BUILD_PROFILE"] = "hadoop2.6"
build_display_name = os.environ["BUILD_DISPLAY_NAME"]
build_url = os.environ["BUILD_URL"]