Browse Source

No Ticket. Hue now only builds against CDH3 trunk. No reason for hudson script to support anything else.

Aaron T. Myers 15 years ago
parent
commit
390a171774
1 changed files with 1 additions and 12 deletions
  1. 1 12
      tools/hudson/build-functions

+ 1 - 12
tools/hudson/build-functions

@@ -21,18 +21,7 @@
 # If not specified, it uses the $CDH variable to select an archive location.
 #
 if [ -z "$CDH_URL" ] ; then
-  CDH=${CDH:-"2"}
-  case "$CDH" in
-    2)
-      CDH_URL="http://archive.cloudera.com/cdh/2/hadoop-0.20.1+169.68.tar.gz"
-      ;;
-    3)
-      CDH_URL="http://archive.cloudera.com/cdh/3/hadoop-0.20.2+320.tar.gz"
-      ;;
-    3trunk)
-      CDH_URL="http://people.apache.org/~todd/snapshot-for-hue-build/hadoop-0.20.3-CDH3-SNAPSHOT.tar.gz"
-      ;;
-  esac
+  CDH_URL="http://people.apache.org/~todd/snapshot-for-hue-build/hadoop-0.20.3-CDH3-SNAPSHOT.tar.gz"
 fi
 
 CDH_TGZ=$(basename $CDH_URL)