diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-12-13 15:21:49 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-12-13 15:21:49 +0100 |
commit | 799606df583e99989145dda2e5b7efd0af6a58ac (patch) | |
tree | 859219a9877ae4f50f96e6dbe74e714359f0a44e | |
parent | 1ec78c065a0d01217cdfc5c393618ec6ecefdf4b (diff) | |
download | servo-799606df583e99989145dda2e5b7efd0af6a58ac.tar.gz servo-799606df583e99989145dda2e5b7efd0af6a58ac.zip |
Disable emulator testing in try-wpt-android and try-android too
-rw-r--r-- | etc/taskcluster/decision_task.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index d27a7111fc9..d6a8a69900a 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -14,6 +14,11 @@ def main(task_for): macos_wpt = magicleap_dev = linux_arm32_dev = linux_arm64_dev = \ android_arm32_dev_from_macos = lambda: None + # FIXME https://github.com/servo/servo/issues/22187 + # In-emulator testing is disabled for now. (Instead we only compile.) + # This local variable shadows the module-level function of the same name. + android_x86_wpt = android_x86_release + all_tests = [ linux_tidy_unit_docs, windows_unit, @@ -21,7 +26,7 @@ def main(task_for): magicleap_dev, android_arm32_dev, android_arm32_release, - android_x86_release, + android_x86_wpt, linux_arm32_dev, linux_arm64_dev, linux_wpt, |