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

Unified Diff: tools/bots/bot_utils.py

Issue 2875773003: Roll 50: Updated for push to origin/master. (Closed)
Patch Set: Roll 50: Updated to latest Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: tools/bots/bot_utils.py
diff --git a/tools/bots/bot_utils.py b/tools/bots/bot_utils.py
index dcd5433f5cd4ce5d5acfa67403097f3b0ce5fd14..7fc9ca0a43d3bec62c1ccfd3bca568640798e358 100644
--- a/tools/bots/bot_utils.py
+++ b/tools/bots/bot_utils.py
@@ -46,7 +46,8 @@ class Channel(object):
BLEEDING_EDGE = 'be'
DEV = 'dev'
STABLE = 'stable'
- ALL_CHANNELS = [BLEEDING_EDGE, DEV, STABLE]
+ INTEGRATION = 'integration'
+ ALL_CHANNELS = [BLEEDING_EDGE, DEV, STABLE, INTEGRATION]
class ReleaseType(object):
RAW = 'raw'
@@ -66,7 +67,7 @@ class GCSNamer(object):
For every (channel,revision,release-type) tuple we have a base path:
- gs://dart-archive/channels/{be,dev,stable}
+ gs://dart-archive/channels/{be,dev,stable,integration}
/{raw,signed,release}/{revision,latest}/
Under every base path, the following structure is used:

Powered by Google App Engine
This is Rietveld 408576698