auto_push.py 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#!/usr/bin/env python
# Copyright 2013 the V8 project authors. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
#       copyright notice, this list of conditions and the following
#       disclaimer in the documentation and/or other materials provided
#       with the distribution.
#     * Neither the name of Google Inc. nor the names of its
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

29
import argparse
30 31
import json
import os
32 33
import re
import sys
34
import urllib
35 36

from common_includes import *
37
import create_release
38

39

40
class Preparation(Step):
41
  MESSAGE = "Preparation."
42 43

  def RunStep(self):
44 45
    # Fetch unfetched revisions.
    self.vc.Fetch()
46 47


48
class FetchCandidate(Step):
49
  MESSAGE = "Fetching V8 lkgr ref."
50 51

  def RunStep(self):
52
    # The roll ref points to the candidate to be rolled.
53 54
    self.Git("fetch origin +refs/heads/lkgr:refs/heads/lkgr")
    self["candidate"] = self.Git("show-ref -s refs/heads/lkgr").strip()
55 56


57 58
class LastReleaseBailout(Step):
  MESSAGE = "Checking last V8 release base."
59 60

  def RunStep(self):
61 62 63
    last_release = self.GetLatestReleaseBase()
    commits = self.GitLog(
        format="%H", git_hash="%s..%s" % (last_release, self["candidate"]))
64

65 66
    if not commits:
      print "Already pushed current candidate %s" % self["candidate"]
67
      return True
68 69


70 71
class CreateRelease(Step):
  MESSAGE = "Creating release if specified."
72 73

  def RunStep(self):
74
    print "Creating release for %s." % self["candidate"]
75

76 77 78
    args = [
      "--author", self._options.author,
      "--reviewer", self._options.reviewer,
79
      "--revision", self["candidate"],
80 81 82
      "--force",
    ]

83 84
    if self._options.work_dir:
      args.extend(["--work-dir", self._options.work_dir])
85

86
    if self._options.push:
machenbach's avatar
machenbach committed
87
      self._side_effect_handler.Call(
88
          create_release.CreateRelease().Run, args)
89 90 91


class AutoPush(ScriptsBase):
92 93
  def _PrepareOptions(self, parser):
    parser.add_argument("-p", "--push",
94
                        help="Create release. Dry run if unspecified.",
95 96 97
                        default=False, action="store_true")

  def _ProcessOptions(self, options):
98
    if not options.author or not options.reviewer:  # pragma: no cover
99 100 101 102 103
      print "You need to specify author and reviewer."
      return False
    options.requires_editor = False
    return True

104 105 106 107 108
  def _Config(self):
    return {
      "PERSISTFILE_BASENAME": "/tmp/v8-auto-push-tempfile",
    }

109 110 111
  def _Steps(self):
    return [
      Preparation,
112
      FetchCandidate,
113
      LastReleaseBailout,
114
      CreateRelease,
115 116
    ]

117

118
if __name__ == "__main__":  # pragma: no cover
119
  sys.exit(AutoPush().Run())