removing all unneeded oozie versions

We no longer need support of building Oozie for 1.2.1 versions
of hadoop and 2.6.0.
Also, since we don't build Oozie often (it has no updates for year)
we can remove building that from all-artifacts script, to see how
building hadoop-openstack works.

Change-Id: I46e525ffa2e5c397de017253f7e37eed42139338
This commit is contained in:
Vitaly Gridnev 2016-06-02 12:26:05 +03:00
parent f7bb0b1f20
commit 19dbe3bbe3
2 changed files with 0 additions and 16 deletions

View File

@ -3,10 +3,6 @@
set -eux
set -o pipefail
echo "Building all needed oozie versions"
./tools/build-oozie.sh 1.2.1
./tools/build-oozie.sh 2.6.0
echo "Building all needed hadoop-openstack versions"
hadoop_versions=(2.2.0 2.3.0 2.5.0 2.6.0 2.7.1)
for ver in ${hadoop_versions[*]}

View File

@ -14,18 +14,6 @@ fi
PLUGIN_VERSION=${1}
case "${PLUGIN_VERSION}" in
"1.2.1")
OOZIE_VERSION="4.0.1"
PREV_OOZIE_HADOOP_VERSION="1.1.1"
HADOOP_VERSION="1.2.1"
BUILD_ARGS=""
;;
"2.6.0")
OOZIE_VERSION="4.0.1"
PREV_OOZIE_HADOOP_VERSION="2.3.0"
HADOOP_VERSION="2.6.0"
BUILD_ARGS="-P hadoop-2"
;;
"2.7.1")
OOZIE_VERSION="4.2.0"
PREV_OOZIE_HADOOP_VERSION="2.3.0"