Changeset 147695 in webkit


Ignore:
Timestamp:
Apr 4, 2013 7:35:53 PM (11 years ago)
Author:
rniwa@webkit.org
Message:

Fix setup-commit-queue and temporarily disable testing on commit-queue
https://bugs.webkit.org/show_bug.cgi?id=113979

Reviewed by Benjamin Poulain.

Use commit-queue@webkit.org instead of webkit.bot.review@gmail.com in commit-queue,
and temporarily disable tests in commit-queue as we don't have enough resources at the moment.

  • EWSTools/setup-commit-queue.sh:
  • Scripts/webkitpy/tool/bot/commitqueuetask.py:

(CommitQueueTask.run):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r147685 r147695  
     12013-04-04  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Fix setup-commit-queue and temporarily disable testing on commit-queue
     4        https://bugs.webkit.org/show_bug.cgi?id=113979
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Use commit-queue@webkit.org instead of webkit.bot.review@gmail.com in commit-queue,
     9        and temporarily disable tests in commit-queue as we don't have enough resources at the moment.
     10
     11        * EWSTools/setup-commit-queue.sh:
     12        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
     13        (CommitQueueTask.run):
     14
    1152013-04-04  Dirk Pranke  <dpranke@chromium.org>
    216
  • trunk/Tools/EWSTools/setup-commit-queue.sh

    r147678 r147695  
    2626# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727
    28 if [[ $# -ne 1 ]];then
    29 echo "Usage: setup-commit-queue.sh BOT_NUMBER"
    30 exit 1
    31 fi
    32 
    3328CWD="$(pwd)"
    3429cd "$(dirname "$0")"
    3530
    3631QUEUE_TYPE=commit-queue
    37 BOT_ID=webkit-cq-$1
    38 BUGZILLA_USERNAME=webkit.review.bot@gmail.com
     32BUGZILLA_USERNAME=commit-queue@webkit.org
    3933read -s -p "Bugzilla Password: " BUGZILLA_PASSWORD && echo
    4034SVN_USERNAME=commit-queue@webkit.org
  • trunk/Tools/Scripts/webkitpy/tool/bot/commitqueuetask.py

    r136555 r147695  
    8383                    return False
    8484                return self.report_failure()
    85             if not self._did_pass_tests_recently():
    86                 return False
     85            # FIXME: We temporarily disable tests on commit queue as we don't have enough machine resources.
     86            # if not self._did_pass_tests_recently():
     87            #    return False
    8788        # Make sure the patch is still valid before landing (e.g., make sure
    8889        # no one has set commit-queue- since we started working on the patch.)
Note: See TracChangeset for help on using the changeset viewer.