You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2010/04/12 08:31:11 UTC

svn commit: r933111 - in /incubator/hama/nightly: hudsonBuildHamaPatch.sh hudsonPatchQueueAdmin.sh

Author: edwardyoon
Date: Mon Apr 12 06:31:10 2010
New Revision: 933111

URL: http://svn.apache.org/viewvc?rev=933111&view=rev
Log:
Add --no-check-certificate option to 'wget' command lines

Modified:
    incubator/hama/nightly/hudsonBuildHamaPatch.sh
    incubator/hama/nightly/hudsonPatchQueueAdmin.sh

Modified: incubator/hama/nightly/hudsonBuildHamaPatch.sh
URL: http://svn.apache.org/viewvc/incubator/hama/nightly/hudsonBuildHamaPatch.sh?rev=933111&r1=933110&r2=933111&view=diff
==============================================================================
--- incubator/hama/nightly/hudsonBuildHamaPatch.sh (original)
+++ incubator/hama/nightly/hudsonBuildHamaPatch.sh Mon Apr 12 06:31:10 2010
@@ -53,7 +53,7 @@ checkout () {
 ###############################################################################
 setup () {
   ### Download latest patch file (ignoring .htm and .html)
-  $WGET -q -O $PATCH_DIR/jira http://issues.apache.org/jira/browse/$defect
+  $WGET --no-check-certificate -q -O $PATCH_DIR/jira http://issues.apache.org/jira/browse/$defect
   chmod -R g+w $PATCH_DIR/jira
   if [[ `$GREP -c 'Patch Available' $PATCH_DIR/jira` == 0 ]] ; then
     echo "$defect is not \"Patch Available\".  Exiting."
@@ -64,7 +64,7 @@ setup () {
   patchNum=`echo $patchURL | $GREP -o '[0-9]*/' | $GREP -o '[0-9]*'`
   echo "$defect patch is being downloaded at `date` from"
   echo "$patchURL"
-  $WGET -q -O $PATCH_DIR/patch $patchURL
+  $WGET --no-check-certificate -q -O $PATCH_DIR/patch $patchURL
   chmod -R g+w $PATCH_DIR/patch
   JIRA_COMMENT="Here are the results of testing the latest attachment 
 $patchURL
@@ -459,7 +459,7 @@ checkout
 RESULT=$?
 if [[ $? != 0 ]] ; then
   ### Resubmit build.
-  $WGET -q -O $PATCH_DIR/build $TRIGGER_BUILD_URL
+  $WGET --no-check-certificate -q -O $PATCH_DIR/build $TRIGGER_BUILD_URL
   exit 100
 fi
 setup

Modified: incubator/hama/nightly/hudsonPatchQueueAdmin.sh
URL: http://svn.apache.org/viewvc/incubator/hama/nightly/hudsonPatchQueueAdmin.sh?rev=933111&r1=933110&r2=933111&view=diff
==============================================================================
--- incubator/hama/nightly/hudsonPatchQueueAdmin.sh (original)
+++ incubator/hama/nightly/hudsonPatchQueueAdmin.sh Mon Apr 12 06:31:10 2010
@@ -27,7 +27,7 @@ if [[ $CURRENT_PATCH == "" ]] ; then
     mv $CURRENT_PATCH $CURRENT_DIR
     ### Start build.
     echo "$CURRENT_PATCH patch submitted for testing at `date`"
-    $WGET -q -O $CURRENT_DIR/build $TRIGGER_BUILD_URL
+    $WGET --no-check-certificate -q -O $CURRENT_DIR/build $TRIGGER_BUILD_URL
     chmod -R g+w $CURRENT_DIR
   else
     CURRENT_PATCH="none"