Backed out changeset ea5f655fa812

This commit is contained in:
Dustin J. Mitchell
2016-01-15 18:19:32 +00:00
parent a143125769
commit d7113f1e5d
62 changed files with 191 additions and 201 deletions

View File

@@ -260,9 +260,6 @@ class Graph(object):
@CommandArgument('--owner',
required=True,
help='email address of who owns this graph')
@CommandArgument('--level',
default="1",
help='SCM level of this repository')
@CommandArgument('--extend-graph',
action="store_true", dest="ci", help='Omit create graph arguments')
@CommandArgument('--interactive',
@@ -349,7 +346,6 @@ class Graph(object):
'month': pushdate[4:6],
'day': pushdate[6:8],
'owner': params['owner'],
'level': params['level'],
'from_now': json_time_from_now,
'now': current_json_time(),
'revision_hash': params['revision_hash']
@@ -594,9 +590,6 @@ class CIBuild(object):
@CommandArgument('--owner',
default='foobar@mozilla.com',
help='email address of who owns this graph')
@CommandArgument('--level',
default="1",
help='SCM level of this repository')
@CommandArgument('build_task',
help='path to build task definition')
@CommandArgument('--interactive',
@@ -635,7 +628,6 @@ class CIBuild(object):
build_parameters = dict(gaia_info().items() + {
'docker_image': docker_image,
'owner': params['owner'],
'level': params['level'],
'from_now': json_time_from_now,
'now': current_json_time(),
'base_repository': params['base_repository'] or head_repository,