diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-11-27 11:25:10 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-11-27 11:25:10 +0100 |
commit | 9a4bc23ff0ca2b3bc6781e2d294caf1f492d6da1 (patch) | |
tree | 9e7cfa193ea9d5e286c271b9e78291bfb7b73aa8 | |
parent | 9b4baf2efa5535bfb14a2b889a5c439e27f3cf4e (diff) | |
download | servo-9a4bc23ff0ca2b3bc6781e2d294caf1f492d6da1.tar.gz servo-9a4bc23ff0ca2b3bc6781e2d294caf1f492d6da1.zip |
Add decision task support for `try=wpt-2020`
This also needs support in Homu’s configuration file
-rw-r--r-- | etc/taskcluster/decision_task.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 3d7394eaa4d..5be3deef1d3 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -50,6 +50,7 @@ def tasks(task_for): android_arm32_release, android_x86_wpt, linux_wpt, + linux_wpt_layout_2020, linux_release, macos_wpt, ] @@ -72,6 +73,7 @@ def tasks(task_for): "try-magicleap": [magicleap_dev], "try-arm": [windows_arm64], "try-wpt": [linux_wpt], + "try-wpt-2020": [linux_wpt_layout_2020], "try-wpt-mac": [macos_wpt], "try-wpt-android": [android_x86_wpt], "try-android": [ @@ -642,11 +644,14 @@ def macos_wpt(): def linux_wpt(): - linux_wpt_one_config(total_chunks=4, layout_2020=False) - linux_wpt_one_config(total_chunks=1, layout_2020=True) + linux_wpt_common(total_chunks=4, layout_2020=False) -def linux_wpt_one_config(total_chunks, layout_2020): +def linux_wpt_layout_2020(): + linux_wpt_common(total_chunks=1, layout_2020=True) + + +def linux_wpt_common(total_chunks, layout_2020): if layout_2020: name_prefix = "Layout 2020 " build_args = "--with-layout-2020" |