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
553b1ae4
Unverified
Commit
553b1ae4
authored
May 15, 2020
by
Johan Lorenzo
Committed by
GitHub
May 15, 2020
Browse files
Bug 1627027 - part 2: Do not run perf tasks on Nd-gp graphs (#10681)
parent
fee37e4f
Changes
4
Show whitespace changes
Inline
Side-by-side
taskcluster/ci/browsertime/kind.yml
View file @
553b1ae4
...
...
@@ -22,6 +22,7 @@ only-for-abis:
job-defaults
:
attributes
:
artifact_prefix
:
public/test_info
nightly
:
true
dependencies
:
geckoview-nightly
:
geckoview-nightly
notify
:
...
...
taskcluster/ci/raptor/kind.yml
View file @
553b1ae4
...
...
@@ -19,6 +19,7 @@ only-for-abis:
job-defaults
:
attributes
:
nightly
:
true
retrigger
:
true
dependencies
:
geckoview-nightly
:
geckoview-nightly
...
...
taskcluster/ci/visual-metrics/kind.yml
View file @
553b1ae4
...
...
@@ -22,6 +22,8 @@ transforms:
-
taskgraph.transforms.task:transforms
job-template
:
attributes
:
nightly
:
true
description
:
"
Run
visual
metrics
calculations
on
Raptor"
run-on-projects
:
[]
run-on-tasks-for
:
[]
...
...
taskcluster/fenix_taskgraph/target_tasks.py
View file @
553b1ae4
...
...
@@ -33,8 +33,7 @@ def target_tasks_nightly(full_task_graph, parameters, graph_config):
def
filter
(
task
,
parameters
):
# We don't want to ship nightly while Google Play is still behind manual review.
# See bug 1628413 for more context.
return
task
.
attributes
.
get
(
"nightly"
,
False
)
and
task
.
kind
!=
"push-apk"
or
\
task
.
kind
in
(
'browsertime'
,
'visual-metrics'
,
'raptor'
)
return
task
.
attributes
.
get
(
"nightly"
,
False
)
and
task
.
kind
!=
"push-apk"
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
filter
(
t
,
parameters
)]
...
...
@@ -44,7 +43,13 @@ def target_tasks_nightly_on_google_play(full_task_graph, parameters, graph_confi
"""Select the set of tasks required for a nightly build that goes on Google Play."""
def
filter
(
task
,
parameters
):
return
task
.
attributes
.
get
(
"nightly"
,
False
)
return
(
task
.
attributes
.
get
(
"nightly"
,
False
)
and
# This target_task is temporary while Google Play processes APKs slower than usually
# (bug 1628413). So we want this target task to be only about shipping APKs to GP and
# not doing any other miscellaneous tasks like performance testing
task
.
kind
not
in
(
"browsertime"
,
"visual-metrics"
,
"raptor"
)
)
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
filter
(
t
,
parameters
)]
...
...
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