Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: tools/release/chromium_roll.py

Issue 1466233002: [release] Remove unused sheriff feature from auto-roller. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/release/auto_roll.py ('k') | tools/release/common_includes.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 *
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 142
143 def _Config(self): 143 def _Config(self):
144 return { 144 return {
145 "PERSISTFILE_BASENAME": "/tmp/v8-chromium-roll-tempfile", 145 "PERSISTFILE_BASENAME": "/tmp/v8-chromium-roll-tempfile",
146 } 146 }
147 147
148 def _Steps(self): 148 def _Steps(self):
149 return [ 149 return [
150 Preparation, 150 Preparation,
151 PrepareRollCandidate, 151 PrepareRollCandidate,
152 DetermineV8Sheriff,
153 SwitchChromium, 152 SwitchChromium,
154 UpdateChromiumCheckout, 153 UpdateChromiumCheckout,
155 UploadCL, 154 UploadCL,
156 CleanUp, 155 CleanUp,
157 ] 156 ]
158 157
159 158
160 if __name__ == "__main__": # pragma: no cover 159 if __name__ == "__main__": # pragma: no cover
161 sys.exit(ChromiumRoll().Run()) 160 sys.exit(ChromiumRoll().Run())
OLDNEW
« no previous file with comments | « tools/release/auto_roll.py ('k') | tools/release/common_includes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698