File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2017-11-27 Per Arne Vollan <
[email protected] >
2
+
3
+ [Win] The number of webkit-patch iterations on EWS should be configurable.
4
+ https://bugs.webkit.org/show_bug.cgi?id=178517
5
+
6
+ Reviewed by Darin Adler.
7
+
8
+ Add a new RESET_AFTER_ITERATION argument to the EWS shell script.
9
+
10
+ * EWSTools/start-queue-win.sh:
11
+
1
12
2017-11-27 Per Arne Vollan <
[email protected] >
2
13
3
14
[Win] Switch to VS2017 on EWS bots.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
+
3
+ if [[ $# -lt 4 ]]; then
4
+ echo " Usage: start-queue-win.sh WEBKIT_BUGZILLA_USERNAME WEBKIT_BUGZILLA_PASSWORD BOT_ID RESET_AFTER_ITERATION"
5
+ exit 1
6
+ fi
7
+
2
8
export WEBKIT_BUGZILLA_USERNAME=$1
3
9
export WEBKIT_BUGZILLA_PASSWORD=$2
4
10
export BOT_ID=$3
11
+ export RESET_AFTER_ITERATION=$4
5
12
6
13
function error_handler()
7
14
{
@@ -52,7 +59,7 @@ function start_ews()
52
59
echo " TASK: test-webkitpy"
53
60
~ /WebKit/Tools/Scripts/test-webkitpy
54
61
echo " TASK: webkit-patch win-ews"
55
- ~ /WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration 10
62
+ ~ /WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION
56
63
echo " TASK: reboot"
57
64
shutdown /r
58
65
}
You can’t perform that action at this time.
0 commit comments