Skip to content

Commit

Permalink
adding support for HDP 2.5 (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
abal5 committed Dec 21, 2016
1 parent 470ab2d commit 5bd42a1
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
5 changes: 5 additions & 0 deletions h2o-dist/buildinfo.json
Expand Up @@ -73,6 +73,11 @@
"zip_file_name" : "h2o-SUBST_PROJECT_VERSION-hdp2.4.zip",
"zip_file_path" : "h2o-SUBST_PROJECT_VERSION-hdp2.4.zip"
},
{
"distribution" : "hdp2.5",
"zip_file_name" : "h2o-SUBST_PROJECT_VERSION-hdp2.5.zip",
"zip_file_path" : "h2o-SUBST_PROJECT_VERSION-hdp2.5.zip"
},
{
"distribution" : "mapr3.1.1",
"zip_file_name" : "h2o-SUBST_PROJECT_VERSION-mapr3.1.zip",
Expand Down
8 changes: 8 additions & 0 deletions h2o-hadoop/h2o-hdp2.5-assembly/build.gradle
@@ -0,0 +1,8 @@
ext {
hadoopVersion = 'hdp2.5'
hadoopMavenArtifactVersion = '2.7.1.2.4.0.0-169'
orcSupported = true
orcHiveExecVersion = "1.2.1"
}

apply from: '../assemblyjar.gradle'
6 changes: 6 additions & 0 deletions h2o-hadoop/h2o-hdp2.5/build.gradle
@@ -0,0 +1,6 @@
ext {
hadoopVersion = 'hdp2.5'
hadoopMavenArtifactVersion = '2.7.1.2.4.0.0-169'
}

apply from: '../driverjar.gradle'
2 changes: 1 addition & 1 deletion make-dist.sh
Expand Up @@ -10,7 +10,7 @@ set -x

# Set common variables.
TOPDIR=$(cd `dirname $0` && pwd)
HADOOP_VERSIONS="cdh5.2 cdh5.3 cdh5.4 cdh5.5 cdh5.6 cdh5.7 cdh5.8 hdp2.1 hdp2.2 hdp2.3 hdp2.4 mapr3.1 mapr4.0 mapr5.0 mapr5.1"
HADOOP_VERSIONS="cdh5.2 cdh5.3 cdh5.4 cdh5.5 cdh5.6 cdh5.7 cdh5.8 hdp2.1 hdp2.2 hdp2.3 hdp2.4 hdp2.5 mapr3.1 mapr4.0 mapr5.0 mapr5.1"

function make_zip_common {
PROJECT_BASE=$1
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Expand Up @@ -48,7 +48,7 @@ if (System.getProperty("user.name").equals("jenkins")
// Default hadoop build targets
def allTargets = [
"cdh5.2", "cdh5.3", "cdh5.4", "cdh5.5", "cdh5.6", "cdh5.7", "cdh5.8",
"hdp2.1", "hdp2.2", "hdp2.3", "hdp2.4",
"hdp2.1", "hdp2.2", "hdp2.3", "hdp2.4", "hdp2.5",
"mapr3.1", "mapr4.0", "mapr5.0", "mapr5.1"
]
// Compute targets
Expand Down

0 comments on commit 5bd42a1

Please sign in to comment.