Title: [225178] trunk/Tools
- Revision
- 225178
- Author
- [email protected]
- Date
- 2017-11-27 09:43:16 -0800 (Mon, 27 Nov 2017)
Log Message
[Win] The number of webkit-patch iterations on EWS should be configurable.
https://bugs.webkit.org/show_bug.cgi?id=178517
Reviewed by Darin Adler.
Add a new RESET_AFTER_ITERATION argument to the EWS shell script.
* EWSTools/start-queue-win.sh:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (225177 => 225178)
--- trunk/Tools/ChangeLog 2017-11-27 17:19:20 UTC (rev 225177)
+++ trunk/Tools/ChangeLog 2017-11-27 17:43:16 UTC (rev 225178)
@@ -1,5 +1,16 @@
2017-11-27 Per Arne Vollan <[email protected]>
+ [Win] The number of webkit-patch iterations on EWS should be configurable.
+ https://bugs.webkit.org/show_bug.cgi?id=178517
+
+ Reviewed by Darin Adler.
+
+ Add a new RESET_AFTER_ITERATION argument to the EWS shell script.
+
+ * EWSTools/start-queue-win.sh:
+
+2017-11-27 Per Arne Vollan <[email protected]>
+
[Win] Switch to VS2017 on EWS bots.
https://bugs.webkit.org/show_bug.cgi?id=178516
Modified: trunk/Tools/EWSTools/start-queue-win.sh (225177 => 225178)
--- trunk/Tools/EWSTools/start-queue-win.sh 2017-11-27 17:19:20 UTC (rev 225177)
+++ trunk/Tools/EWSTools/start-queue-win.sh 2017-11-27 17:43:16 UTC (rev 225178)
@@ -1,7 +1,14 @@
#!/bin/sh
+
+if [[ $# -lt 4 ]]; then
+echo "Usage: start-queue-win.sh WEBKIT_BUGZILLA_USERNAME WEBKIT_BUGZILLA_PASSWORD BOT_ID RESET_AFTER_ITERATION"
+exit 1
+fi
+
export WEBKIT_BUGZILLA_USERNAME=$1
export WEBKIT_BUGZILLA_PASSWORD=$2
export BOT_ID=$3
+export RESET_AFTER_ITERATION=$4
function error_handler()
{
@@ -52,7 +59,7 @@
echo "TASK: test-webkitpy"
~/WebKit/Tools/Scripts/test-webkitpy
echo "TASK: webkit-patch win-ews"
- ~/WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration 10
+ ~/WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION
echo "TASK: reboot"
shutdown /r
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes