From 0d165ec2050aa06aa545d74c8d7c2ff197fa02de Mon Sep 17 00:00:00 2001 From: Josh Rosen Date: Sun, 3 Jan 2016 22:05:02 -0800 Subject: [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 Closes #10565 from JoshRosen/add-missing-hadoop-profiles-in-test-scripts. --- dev/run-tests-jenkins.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dev/run-tests-jenkins.py') 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"] -- cgit v1.2.3