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
fee37e4f
Unverified
Commit
fee37e4f
authored
May 15, 2020
by
Gregory Mierzwinski
Committed by
GitHub
May 15, 2020
Browse files
Bug 1627027 - Use nightly Fenix variant instead of performancetest. (#10648)
parent
a3c6492d
Changes
4
Hide whitespace changes
Inline
Side-by-side
.cron.yml
View file @
fee37e4f
...
...
@@ -26,18 +26,6 @@ jobs:
treeherder-symbol
:
fennec-beta
target-tasks-method
:
fennec-beta
when
:
[]
# Force hook only
-
name
:
raptor
job
:
type
:
decision-task
treeherder-symbol
:
raptor-D
target-tasks-method
:
raptor
when
:
[{
hour
:
1
,
minute
:
0
}]
-
name
:
browsertime
job
:
type
:
decision-task
treeherder-symbol
:
btime-D
target-tasks-method
:
browsertime
when
:
[{
hour
:
1
,
minute
:
0
}]
-
name
:
bump-android-components
job
:
type
:
decision-task
...
...
taskcluster/ci/browsertime/kind.yml
View file @
fee37e4f
...
...
@@ -13,7 +13,7 @@ kind-dependencies:
primary-dependency
:
signing
only-for-build-types
:
-
performance-test
-
nightly
only-for-abis
:
-
armeabi-v7a
...
...
@@ -81,7 +81,7 @@ job-defaults:
-
'
--app=fenix'
-
'
--browsertime'
-
'
--cold'
-
'
--binary=org.mozilla.fenix.
performancetest
'
-
'
--binary=org.mozilla.fenix.
nightly
'
-
'
--activity=org.mozilla.fenix.IntentReceiverActivity'
-
'
--download-symbols=ondemand'
-
'
--browsertime-node=$MOZ_FETCHES_DIR/node/bin/node'
...
...
taskcluster/ci/raptor/kind.yml
View file @
fee37e4f
...
...
@@ -11,7 +11,7 @@ kind-dependencies:
-
toolchain
only-for-build-types
:
-
performance-test
-
nightly
only-for-abis
:
-
armeabi-v7a
...
...
@@ -76,7 +76,7 @@ job-defaults:
-
'
./test-linux.sh'
-
'
--cfg=mozharness/configs/raptor/android_hw_config.py'
-
'
--app=fenix'
-
'
--binary=org.mozilla.fenix.
performancetest
'
-
'
--binary=org.mozilla.fenix.
nightly
'
-
'
--activity=org.mozilla.fenix.IntentReceiverActivity'
-
'
--download-symbols=ondemand'
fetches
:
...
...
taskcluster/fenix_taskgraph/target_tasks.py
View file @
fee37e4f
...
...
@@ -33,7 +33,8 @@ 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"
return
task
.
attributes
.
get
(
"nightly"
,
False
)
and
task
.
kind
!=
"push-apk"
or
\
task
.
kind
in
(
'browsertime'
,
'visual-metrics'
,
'raptor'
)
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
filter
(
t
,
parameters
)]
...
...
@@ -59,22 +60,6 @@ def target_tasks_fennec_nightly(full_task_graph, parameters, graph_config):
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
_filter_fennec
(
"beta"
,
t
,
parameters
)]
@
_target_task
(
'raptor'
)
def
target_tasks_raptor
(
full_task_graph
,
parameters
,
graph_config
):
def
filter
(
task
,
parameters
):
return
task
.
kind
==
'raptor'
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
filter
(
t
,
parameters
)]
@
_target_task
(
'browsertime'
)
def
target_tasks_raptor
(
full_task_graph
,
parameters
,
graph_config
):
def
filter
(
task
,
parameters
):
return
task
.
kind
in
(
'browsertime'
,
'visual-metrics'
)
return
[
l
for
l
,
t
in
full_task_graph
.
tasks
.
iteritems
()
if
filter
(
t
,
parameters
)]
@
_target_task
(
"bump_android_components"
)
def
target_tasks_bump_android_components
(
full_task_graph
,
parameters
,
graph_config
):
"""Select the set of tasks required to update android components."""
...
...
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