From: <bms...@us...> - 2006-04-01 10:26:18
|
Revision: 2192 Author: bmsleight Date: 2006-04-01 02:26:11 -0800 (Sat, 01 Apr 2006) ViewCVS: http://svn.sourceforge.net/morphix/?rev=2192&view=rev Log Message: ----------- autotesting, only rsync today's builds, add some message for the log files, tidy-up Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2006-03-30 21:06:09 UTC (rev 2191) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2006-04-01 10:26:11 UTC (rev 2192) @@ -28,6 +28,8 @@ VID_DIR=/home/morph/videos/ LOG_FILE=/home/morph/log/autotesting.log LOG_FILE_BN=$(basename $LOG_FILE) +DIVIDER="######################################################" +TITLED="------------------------------------------------------- " mkdir $TMP_ISO_DIR 2>/dev/null mkdir $VID_DIR 2>/dev/null @@ -35,19 +37,33 @@ export DISPLAY=:0.0 #Get Autobuilds from Morphix.org -rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/ /home/morph/autobuilds/ +echo $DIVIDER +echo "Getting AutoBuilds from Morphix.org" +echo $TITLED +TODAY=$(date +"%F") +find /home/morph/autobuilds/mainmod/sarge/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f +find /home/morph/autobuilds/mainmod/sid/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f +find /home/morph/autobuilds/base/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f +rsync --dry-run -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ +rsync --dry-run -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ +rsync --dry-run -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ + find /home/morph/videos/ -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f #Get Autobuilds from alextreme.org +echo $DIVIDER +echo "Getting AutoBuilds from Alextreme.org" +echo $TITLED + STORE_AT_MM="/home/morph/alextreme/mainmod" REMOTE_AT_MM="http://www.alextreme.org/autobuilds/" GNOME_NAME="morphix-gnome-" KDE_NAME="morphix-kde-" -find $STORE_AT_MM -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f -rm $STORE_AT_MM/index.html 1>/dev/null 2>&1 +find $STORE_AT_MM/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f +rm $STORE_AT_MM/index.html* 1>/dev/null 2>&1 wget_cl() { - wget --tries=3 --timeout=60 --directory-prefix=$1 $2 + wget --non-verbose --tries=3 --timeout=60 --directory-prefix=$1 $2 } wget_cl "$STORE_AT_MM" "$REMOTE_AT_MM/" if [ -e $STORE_AT_MM/index.html ] @@ -72,12 +88,18 @@ #Build minimod #/home/morph/morphix/trunk/mmaker/utils/auto-testing/build_auto_test_mini.sh #morphmini /home/morph/morphix/trunk/mmaker/utils/auto-testing/AutoTestingMini.xml $DEBUG_MINI -sudo morphimini /home/morph/morphix/trunk/mmaker/utils/auto-testing/AutoTestingMini.xml $DEBUG_MINI +echo $DIVIDER +echo "Building AutoTestingMiniModule" +echo $TITLED +sudo morphmini /home/morph/morphix/trunk/mmaker/utils/auto-testing/AutoTestingMini.xml $DEBUG_MINI TODAY=$(date +"%F") MAINMODS=$(find /home/morph/autobuilds/mainmod/ /home/morph/alextreme/mainmod/ /home/morph/local_autobuilds/builds/ -type f -name "*$TODAY*.mod" ) BASES=$(find /home/morph/autobuilds/base/ -type f -name "*$TODAY*.iso" ) echo $TODAY +echo $DIVIDER +echo "Looping, for each base look at the mainmods, (Requires at least one base per day)" +echo $TITLED for TMP_MAINMODS in $MAINMODS do for TMP_BASES in $BASES @@ -104,13 +126,22 @@ then echo $TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi' file exists skipping this video' else + echo $DIVIDER + echo "Add to base, mini and main modules" + echo $TITLED sudo isomorph --add mini $DEBUG_MINI $TMP_BASES $TMP_ISO_1 sudo isomorph --add main $TMP_MAINMODS $TMP_ISO_1 $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN rm $TMP_ISO_1 + echo $DIVIDER + echo "Run auto_testing" + echo $TITLED sudo /home/morph/morphix/trunk/mmaker/utils/auto-testing/auto_testing.sh $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi 540 sudo rm $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN gzip -c $LOG_FILE >$VID_DIR/$LOG_FILE_BN'_'$TODAY'_.gz' + echo $DIVIDER + echo "Upload" + echo $TITLED rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/autobuilds/video/ cp $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi /home/morph/autobuilds/video/ # This machine get hot - have 20 minutes to cool down This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2006-05-17 22:20:21
|
Revision: 2229 Author: bmsleight Date: 2006-05-17 15:20:05 -0700 (Wed, 17 May 2006) ViewCVS: http://svn.sourceforge.net/morphix/?rev=2229&view=rev Log Message: ----------- Test all minimodules, echo times. improve my svn stats. Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2006-05-16 20:18:35 UTC (rev 2228) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2006-05-17 22:20:05 UTC (rev 2229) @@ -25,6 +25,7 @@ TMP_ISO_DIR=/tmp/iso TMP_ISO_1=$TMP_ISO_DIR/tmp1.iso TMP_ISO_2=$TMP_ISO_DIR/tmp2.iso +TMP_ISO_3=$TMP_ISO_DIR/start.iso VID_DIR=/home/morph/videos/ LOG_FILE=/home/morph/log/autotesting.log LOG_FILE_BN=$(basename $LOG_FILE) @@ -40,20 +41,26 @@ echo $DIVIDER echo "Getting AutoBuilds from Morphix.org" echo $TITLED +date TODAY=$(date +"%F") find /home/morph/autobuilds/mainmod/sarge/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f find /home/morph/autobuilds/mainmod/sid/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f find /home/morph/autobuilds/base/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f +find /home/morph/autobuilds/minimod/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ +rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ + find /home/morph/videos/ -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f #Get Autobuilds from alextreme.org echo $DIVIDER echo "Getting AutoBuilds from Alextreme.org" echo $TITLED +date STORE_AT_MM="/home/morph/alextreme/mainmod" REMOTE_AT_MM="http://www.alextreme.org/autobuilds/" @@ -91,15 +98,19 @@ echo $DIVIDER echo "Building AutoTestingMiniModule" echo $TITLED +date sudo morphmini /home/morph/morphix/trunk/mmaker/utils/auto-testing/AutoTestingMini.xml $DEBUG_MINI TODAY=$(date +"%F") MAINMODS=$(find /home/morph/autobuilds/mainmod/ /home/morph/alextreme/mainmod/ /home/morph/local_autobuilds/builds/mainmod/ -type f -name "*$TODAY*.mod" ) BASES=$(find /home/morph/autobuilds/base/ -type f -name "*$TODAY*.iso" ) +ALL_MINIS=$(find /home/morph/autobuilds/minimod/ -type f -name "*$TODAY*.mod" ) + echo $TODAY echo $DIVIDER echo "Looping, for each base look at the mainmods, (Requires at least one base per day)" echo $TITLED +date for TMP_MAINMODS in $MAINMODS do for TMP_BASES in $BASES @@ -127,14 +138,20 @@ echo $TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg' file exists skipping this video' else echo $DIVIDER - echo "Add to base, mini and main modules" + echo "Add to base, all minis and main module" echo $TITLED - sudo isomorph --add mini $DEBUG_MINI $TMP_BASES $TMP_ISO_1 + date + cp $TMP_BASES $TMP_ISO_1 + for EACH_MINI in $ALL_MINIS; do + sudo isomorph --add mini $EACH_MINI $TMP_ISO_1 $TMP_ISO_3 + mv $TMP_ISO_3 $TMP_ISO_1 + done sudo isomorph --add main $TMP_MAINMODS $TMP_ISO_1 $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN rm $TMP_ISO_1 echo $DIVIDER echo "Run auto_testing" echo $TITLED + date sudo /home/morph/morphix/trunk/mmaker/utils/auto-testing/auto_testing.sh $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi 650 sudo rm $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN @@ -142,10 +159,13 @@ echo $DIVIDER echo "Upload" echo $TITLED + date rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/autobuilds/video/ cp $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg /home/morph/autobuilds/video/ # This machine get hot - have 20 minutes to cool down - sleep 1200 + date + sleep 1200 + date fi done done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2006-05-24 22:13:42
|
Revision: 2251 Author: bmsleight Date: 2006-05-24 15:13:29 -0700 (Wed, 24 May 2006) ViewCVS: http://svn.sourceforge.net/morphix/?rev=2251&view=rev Log Message: ----------- Option to skip the download and re-test today's builds Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2006-05-24 21:51:00 UTC (rev 2250) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2006-05-24 22:13:29 UTC (rev 2251) @@ -19,7 +19,7 @@ # 5 - Convert screenshots to video # 6 - rsync video # 7 - Relax until the next day - +SKIP_DOWNLOADS="$1" DEBUG_MINI=/home/morph/minimods/Morphix-Mini-Debug-Auto-Testing.mod TMP_ISO_DIR=/tmp/iso @@ -47,49 +47,50 @@ find /home/morph/autobuilds/mainmod/sid/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f find /home/morph/autobuilds/base/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f find /home/morph/autobuilds/minimod/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f - -rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ -rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ -rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ -rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ - - find /home/morph/videos/ -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f -#Get Autobuilds from alextreme.org -echo $DIVIDER -echo "Getting AutoBuilds from Alextreme.org" -echo $TITLED -date -STORE_AT_MM="/home/morph/alextreme/mainmod" -REMOTE_AT_MM="http://www.alextreme.org/autobuilds/" -GNOME_NAME="morphix-gnome-" -KDE_NAME="morphix-kde-" +if [ -z "$SKIP_DOWNLOADS" ]; then + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ -find $STORE_AT_MM/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f -rm $STORE_AT_MM/index.html* 1>/dev/null 2>&1 -wget_cl() { - wget --no-verbose --tries=3 --timeout=60 --directory-prefix=$1 $2 - } -wget_cl "$STORE_AT_MM" "$REMOTE_AT_MM/" -if [ -e $STORE_AT_MM/index.html ] - then - TODAY=$(date +"%F") - GNOME=$( grep $STORE_AT_MM/index.html -e $GNOME_NAME$TODAY | sed -e s/^.*\<a\ href=\"//g | sed -e s/\"\>.*$//g | grep -e "mod$") - KDE=$( grep $STORE_AT_MM/index.html -e $KDE_NAME$TODAY | sed -e s/^.*\<a\ href=\"//g | sed -e s/\"\>.*$//g | grep -e "mod$") - WGETS=" $REMOTE_AT_MM/$GNOME $REMOTE_AT_MM/$GNOME.md5 $REMOTE_AT_MM/$KDE $REMOTE_AT_MM/$KDE.md5" - for WGET in $WGETS - do - if [ -e $WGET ] + #Get Autobuilds from alextreme.org + echo $DIVIDER + echo "Getting AutoBuilds from Alextreme.org" + echo $TITLED + date + + STORE_AT_MM="/home/morph/alextreme/mainmod" + REMOTE_AT_MM="http://www.alextreme.org/autobuilds/" + GNOME_NAME="morphix-gnome-" + KDE_NAME="morphix-kde-" + + find $STORE_AT_MM/ -not -type d -mtime +1 -print0 | xargs --null --no-run-if-empty sudo rm -f + rm $STORE_AT_MM/index.html* 1>/dev/null 2>&1 + wget_cl() { + wget --no-verbose --tries=3 --timeout=60 --directory-prefix=$1 $2 + } + wget_cl "$STORE_AT_MM" "$REMOTE_AT_MM/" + if [ -e $STORE_AT_MM/index.html ] then - echo $WGET ' file exists skipping d/load' - else - wget_cl $STORE_AT_MM $WGET - fi - done -else - echo "$REMOTE_AT_MM/index.html does not exist skipping other d/loads" + TODAY=$(date +"%F") + GNOME=$( grep $STORE_AT_MM/index.html -e $GNOME_NAME$TODAY | sed -e s/^.*\<a\ href=\"//g | sed -e s/\"\>.*$//g | grep -e "mod$") + KDE=$( grep $STORE_AT_MM/index.html -e $KDE_NAME$TODAY | sed -e s/^.*\<a\ href=\"//g | sed -e s/\"\>.*$//g | grep -e "mod$") + WGETS=" $REMOTE_AT_MM/$GNOME $REMOTE_AT_MM/$GNOME.md5 $REMOTE_AT_MM/$KDE $REMOTE_AT_MM/$KDE.md5" + for WGET in $WGETS + do + if [ -e $WGET ] + then + echo $WGET ' file exists skipping d/load' + else + wget_cl $STORE_AT_MM $WGET + fi + done + else + echo "$REMOTE_AT_MM/index.html does not exist skipping other d/loads" + fi fi #Build minimod This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2007-06-18 21:11:24
|
Revision: 2521 http://svn.sourceforge.net/morphix/?rev=2521&view=rev Author: bmsleight Date: 2007-06-18 14:11:23 -0700 (Mon, 18 Jun 2007) Log Message: ----------- Adding Locking file Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2007-06-18 20:05:44 UTC (rev 2520) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2007-06-18 21:11:23 UTC (rev 2521) @@ -19,6 +19,15 @@ # 5 - Convert screenshots to video # 6 - rsync video # 7 - Relax until the next day +if [ -f /tmp/AutoTesting.lock ] +then + echo "Already running AutoTesting" + exit +fi + +echo "Lock File" >/tmp/AutoTesting.lock + + SKIP_DOWNLOADS="$1" TODAY=$(date +"%F") @@ -58,6 +67,7 @@ if [ -z "$SKIP_DOWNLOADS" ]; then rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/etch/*$TODAY* /home/morph/autobuilds/mainmod/etch/ rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ @@ -205,3 +215,4 @@ rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/autobuilds/video/ rm $TMP_TAR_DIR/* sudo rm $TMP_ISO_DIR -r +rm /tmp/AutoTesting.lock This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2007-07-29 21:51:58
|
Revision: 2547 http://morphix.svn.sourceforge.net/morphix/?rev=2547&view=rev Author: bmsleight Date: 2007-07-29 14:51:42 -0700 (Sun, 29 Jul 2007) Log Message: ----------- bmsleight reads his own documentation, g not s. Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2007-07-29 14:22:39 UTC (rev 2546) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2007-07-29 21:51:42 UTC (rev 2547) @@ -174,7 +174,7 @@ echo $DIVIDER sudo isomorph --list $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $DIVIDER - /home/morph/morphix/trunk/mmaker/utils/auto-testing/video-qemu-booting-iso.sh -q qemu_0.8.4-etch1 -t 800 -l /home/morph/morphix/trunk/cdrom-misc/images/Morphix_TINY.gif -s 800x600 -s "spc,s,p,l,a,s,h,equal,n,spc,d,e,b,u,g,m,o,r,p,h,i,x,equal,y,e,s,spc,kp_enter" $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg + /home/morph/morphix/trunk/mmaker/utils/auto-testing/video-qemu-booting-iso.sh -q qemu_0.8.4-etch1 -t 800 -l /home/morph/morphix/trunk/cdrom-misc/images/Morphix_TINY.gif -g 800x600 -s "spc,s,p,l,a,s,h,equal,n,spc,d,e,b,u,g,m,o,r,p,h,i,x,equal,y,e,s,spc,kp_enter" $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg # sudo /home/morph/morphix/trunk/mmaker/utils/auto-testing/auto_testing.sh $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi 800 sudo rm $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2007-07-31 18:49:29
|
Revision: 2551 http://morphix.svn.sourceforge.net/morphix/?rev=2551&view=rev Author: bmsleight Date: 2007-07-31 11:49:18 -0700 (Tue, 31 Jul 2007) Log Message: ----------- Min. geometry 1024x768 Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2007-07-30 21:40:54 UTC (rev 2550) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2007-07-31 18:49:18 UTC (rev 2551) @@ -174,7 +174,7 @@ echo $DIVIDER sudo isomorph --list $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $DIVIDER - /home/morph/morphix/trunk/mmaker/utils/auto-testing/video-qemu-booting-iso.sh -q qemu_0.8.4-etch1 -t 800 -l /home/morph/morphix/trunk/cdrom-misc/images/Morphix_TINY.gif -g 800x600 -s "spc,s,p,l,a,s,h,equal,n,spc,d,e,b,u,g,m,o,r,p,h,i,x,equal,y,e,s,spc,kp_enter" $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg + /home/morph/morphix/trunk/mmaker/utils/auto-testing/video-qemu-booting-iso.sh -q qemu_0.8.4-etch1 -t 800 -l /home/morph/morphix/trunk/cdrom-misc/images/Morphix_TINY.gif -g 1024x768 -s "spc,s,p,l,a,s,h,equal,n,spc,d,e,b,u,g,m,o,r,p,h,i,x,equal,y,e,s,spc,kp_enter" $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg # sudo /home/morph/morphix/trunk/mmaker/utils/auto-testing/auto_testing.sh $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.avi 800 sudo rm $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN echo $TMP_ISO_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2007-09-06 19:48:36
|
Revision: 2556 http://morphix.svn.sourceforge.net/morphix/?rev=2556&view=rev Author: bmsleight Date: 2007-09-06 12:48:33 -0700 (Thu, 06 Sep 2007) Log Message: ----------- It is possible to function with less sleep, Happy Morphix commit-day :) Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2007-09-06 01:17:15 UTC (rev 2555) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2007-09-06 19:48:33 UTC (rev 2556) @@ -189,7 +189,7 @@ date # This machine get hot - have 20 minutes to cool down # sleep 1200 - sleep 300 + sleep 240 date fi #Zip the log and xml files of the base and main_modules This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2008-01-28 21:17:57
|
Revision: 2614 http://morphix.svn.sourceforge.net/morphix/?rev=2614&view=rev Author: bmsleight Date: 2008-01-28 13:17:27 -0800 (Mon, 28 Jan 2008) Log Message: ----------- Updating ibiblio rsync links distro with a _r_ Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2008-01-28 20:35:56 UTC (rev 2613) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2008-01-28 21:17:27 UTC (rev 2614) @@ -65,11 +65,11 @@ find /home/morph/autobuilds/video/ -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f if [ "$SKIP_DOWNLOADS" != "SkipAll" ]; then - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/etch/*$TODAY* /home/morph/autobuilds/mainmod/etch/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/distro/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/distro/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/distro/autobuilds/mainmod/etch/*$TODAY* /home/morph/autobuilds/mainmod/etch/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/distro/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/distro/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ if [ "$SKIP_DOWNLOADS" != "SkipAlextreme" ]; then #Get Autobuilds from alextreme.org @@ -184,7 +184,7 @@ echo "Upload" echo $TITLED date - rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/disto/autobuilds/video/ + rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/distro/autobuilds/video/ cp $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg /home/morph/autobuilds/video/ date # This machine get hot - have 20 minutes to cool down @@ -214,7 +214,7 @@ echo "Upload log and xml as tar.gz" echo $TITLED gzip -c $LOG_FILE >$VID_DIR/$LOG_FILE_BN'_'$TODAY'_.gz' -rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/disto/autobuilds/video/ +rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/distro/autobuilds/video/ rm $TMP_TAR_DIR/* sudo rm $TMP_ISO_DIR -r rm /tmp/AutoTesting.lock This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bms...@us...> - 2008-01-28 20:36:02
|
Revision: 2613 http://morphix.svn.sourceforge.net/morphix/?rev=2613&view=rev Author: bmsleight Date: 2008-01-28 12:35:56 -0800 (Mon, 28 Jan 2008) Log Message: ----------- Updating ibiblio rsync links Modified Paths: -------------- trunk/mmaker/utils/auto-testing/run_testing.sh Modified: trunk/mmaker/utils/auto-testing/run_testing.sh =================================================================== --- trunk/mmaker/utils/auto-testing/run_testing.sh 2008-01-27 21:34:18 UTC (rev 2612) +++ trunk/mmaker/utils/auto-testing/run_testing.sh 2008-01-28 20:35:56 UTC (rev 2613) @@ -65,11 +65,11 @@ find /home/morph/autobuilds/video/ -not -type d -mtime +4 -print0 | xargs --null --no-run-if-empty sudo rm -f if [ "$SKIP_DOWNLOADS" != "SkipAll" ]; then - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/etch/*$TODAY* /home/morph/autobuilds/mainmod/etch/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ - rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/base/*$TODAY* /home/morph/autobuilds/base/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/sid/*$TODAY* /home/morph/autobuilds/mainmod/sid/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/etch/*$TODAY* /home/morph/autobuilds/mainmod/etch/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/mainmod/sarge/*$TODAY* /home/morph/autobuilds/mainmod/sarge/ + rsync -avz --delete-before -e ssh mo...@lo...:morphixorg/disto/autobuilds/minimod/*$TODAY* /home/morph/autobuilds/minimod/ if [ "$SKIP_DOWNLOADS" != "SkipAlextreme" ]; then #Get Autobuilds from alextreme.org @@ -184,7 +184,7 @@ echo "Upload" echo $TITLED date - rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/autobuilds/video/ + rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/disto/autobuilds/video/ cp $VID_DIR/$TMP_MAINMODS_BN'_'$TMP_BASES_BN.ogg /home/morph/autobuilds/video/ date # This machine get hot - have 20 minutes to cool down @@ -214,7 +214,7 @@ echo "Upload log and xml as tar.gz" echo $TITLED gzip -c $LOG_FILE >$VID_DIR/$LOG_FILE_BN'_'$TODAY'_.gz' -rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/autobuilds/video/ +rsync -avz --delete -e ssh $VID_DIR mo...@lo...:morphixorg/disto/autobuilds/video/ rm $TMP_TAR_DIR/* sudo rm $TMP_ISO_DIR -r rm /tmp/AutoTesting.lock This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |