Title: [143022] trunk/Tools
Revision
143022
Author
[email protected]
Date
2013-02-15 11:17:32 -0800 (Fri, 15 Feb 2013)

Log Message

Get Win EWS startup script checked into tree so we can make changes to all the EWS bots more easily.

* EWSTools/start-queue-win.sh: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/Tools/ChangeLog (143021 => 143022)


--- trunk/Tools/ChangeLog	2013-02-15 19:15:33 UTC (rev 143021)
+++ trunk/Tools/ChangeLog	2013-02-15 19:17:32 UTC (rev 143022)
@@ -1,3 +1,9 @@
+2013-02-15  Roger Fong  <[email protected]>
+
+        Get Win EWS startup script checked into tree so we can make changes to all the EWS bots more easily.
+
+        * EWSTools/start-queue-win.sh: Added.
+
 2013-02-15  Andreas Kling  <[email protected]>
 
         Unbreak webkit-patch -- can't have both Committer and Contributor entry with same e-mail address.

Added: trunk/Tools/EWSTools/start-queue-win.sh (0 => 143022)


--- trunk/Tools/EWSTools/start-queue-win.sh	                        (rev 0)
+++ trunk/Tools/EWSTools/start-queue-win.sh	2013-02-15 19:17:32 UTC (rev 143022)
@@ -0,0 +1,38 @@
+#!/bin/sh
+export [email protected]
+export WEBKIT_BUGZILLA_PASSWORD=intrigue
+while :
+do
+	date
+	echo "TASK: cleaning up old log files."
+    cd ~/win-ews-logs
+    rm -rf win-ews.old
+    mv win-ews.log win-ews.old
+    find ~/win-ews-logs -mtime +7 -exec rm -f {} \;
+    echo "TASK: Starting up"
+	cd ~/WebKit
+	echo "TASK: Cleaning WebKitBuild"
+	rm -rf WebKitBuild
+	date
+	echo "TASK: Cleaning up"
+	svn cleanup
+	date
+	echo "TASK: svn revert -R *"
+	svn revert -R *
+	date
+	echo "TASK: svn status"
+	svn status | grep "?" | awk '{print $2}' | xargs rm -rf
+	date
+	echo "TASK: webkit-patch clean"
+	~/WebKit/Tools/Scripts/webkit-patch clean
+	date
+	echo "TASK: svn up --non-interactive"
+	svn up --non-interactive
+	date
+	echo "TASK: kill orphaned tasks"
+	taskkill.exe /f /im cl.exe
+	echo "TASK: webkit-patch win-ews"
+	~/WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=APPLE-EWS-4 --no-confirm --exit-after-iteration 10
+	echo "TASK: reboot"
+	shutdown /r /t 0
+done
Property changes on: trunk/Tools/EWSTools/start-queue-win.sh
___________________________________________________________________

Added: svn:executable

Added: svn:eol-style

_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to