Bug 1354038 - [push-apk] taskgraph: Use rollout and deactivate dry-run on release r=aki

MozReview-Commit-ID: 4Rc0Qd5ZI4Z
This commit is contained in:
Johan Lorenzo
2017-04-20 18:21:52 +02:00
parent ca95cdd557
commit a5a0806cc1
2 changed files with 5 additions and 3 deletions

View File

@@ -215,7 +215,7 @@ PUSH_APK_SCOPES = {
PUSH_APK_GOOGLE_PLAY_TRACT = {
'aurora': 'beta',
'beta': 'production',
'release': 'production',
'release': 'rollout',
'default': 'invalid',
}
@@ -229,11 +229,13 @@ PUSH_APK_BREAKPOINT_WORKER_TYPE = {
PUSH_APK_DRY_RUN_OPTION = {
'aurora': False,
'beta': False,
'release': True,
'release': False,
'default': True,
}
PUSH_APK_ROLLOUT_PERCENTAGE = {
# XXX Please make sure to change PUSH_APK_GOOGLE_PLAY_TRACT to 'rollout' if you add a new
# supported project
'release': 10,
'default': None,
}