Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gaba
fenix
Commits
67abe16b
Unverified
Commit
67abe16b
authored
Apr 17, 2020
by
Mihai Tabara
Committed by
GitHub
Apr 17, 2020
Browse files
Bug 1630587 - fix mark-as-shipped task Fenix releases (#10021)
parent
909ee734
Changes
2
Hide whitespace changes
Inline
Side-by-side
taskcluster/ci/mark-as-shipped/kind.yml
View file @
67abe16b
...
...
@@ -24,7 +24,13 @@ job-template:
description
:
Mark Fenix as shipped in ship-it
worker-type
:
ship-it
scopes
:
-
project:releng:ship-it:action:mark-as-shipped
by-level
:
'
3'
:
-
project:releng:ship-it:action:mark-as-shipped
-
project:releng:ship-it:server:production
default
:
-
project:releng:ship-it:action:mark-as-shipped
-
project:releng:ship-it:server:staging
worker
:
{}
treeherder
:
...
...
taskcluster/fenix_taskgraph/transforms/mark_as_shipped.py
View file @
67abe16b
...
...
@@ -15,6 +15,20 @@ from taskgraph.util.schema import resolve_keyed_by
transforms
=
TransformSequence
()
@
transforms
.
add
def
resolve_keys
(
config
,
tasks
):
for
task
in
tasks
:
resolve_keyed_by
(
task
,
'scopes'
,
item_name
=
task
[
"name"
],
**
{
'level'
:
config
.
params
[
"level"
],
}
)
yield
task
@
transforms
.
add
def
make_task_description
(
config
,
jobs
):
for
job
in
jobs
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment