Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 the V8 project authors. All rights reserved. | 2 # Copyright 2014 the V8 project authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import argparse | 6 import argparse |
| 7 import os | 7 import os |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 from common_includes import * | 10 from common_includes import * |
| 11 | 11 |
| 12 | |
| 13 ROLL_SUMMARY = ("Summary of changes available at:\n" | 12 ROLL_SUMMARY = ("Summary of changes available at:\n" |
| 14 "https://chromium.googlesource.com/v8/v8/+log/%s..%s") | 13 "https://chromium.googlesource.com/v8/v8/+log/%s..%s") |
| 15 | 14 |
| 16 | |
| 17 ISSUE_MSG = ( | 15 ISSUE_MSG = ( |
| 18 """Please follow these instructions for assigning/CC'ing issues: | 16 """Please follow these instructions for assigning/CC'ing issues: |
| 19 https://code.google.com/p/v8-wiki/wiki/TriagingIssues""") | 17 https://code.google.com/p/v8-wiki/wiki/TriagingIssues/n |
|
Michael Achenbach
2015/07/01 05:39:56
Remove /n. In normal strings \n - but in """ strin
Michael Hablich
2015/07/01 09:13:31
Done.
| |
| 18 Please close rolling in case of a roll revert: | |
| 19 https://v8-roll.appspot.com/""") | |
| 20 | 20 |
| 21 class Preparation(Step): | 21 class Preparation(Step): |
| 22 MESSAGE = "Preparation." | 22 MESSAGE = "Preparation." |
| 23 | 23 |
| 24 def RunStep(self): | 24 def RunStep(self): |
| 25 # Update v8 remote tracking branches. | 25 # Update v8 remote tracking branches. |
| 26 self.GitFetchOrigin() | 26 self.GitFetchOrigin() |
| 27 self.Git("fetch origin +refs/tags/*:refs/tags/*") | 27 self.Git("fetch origin +refs/tags/*:refs/tags/*") |
| 28 | 28 |
| 29 | 29 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 150 DetermineV8Sheriff, | 150 DetermineV8Sheriff, |
| 151 SwitchChromium, | 151 SwitchChromium, |
| 152 UpdateChromiumCheckout, | 152 UpdateChromiumCheckout, |
| 153 UploadCL, | 153 UploadCL, |
| 154 CleanUp, | 154 CleanUp, |
| 155 ] | 155 ] |
| 156 | 156 |
| 157 | 157 |
| 158 if __name__ == "__main__": # pragma: no cover | 158 if __name__ == "__main__": # pragma: no cover |
| 159 sys.exit(ChromiumRoll().Run()) | 159 sys.exit(ChromiumRoll().Run()) |
| OLD | NEW |