| 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:
|
|
|