diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-12-14 11:35:12 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-12-17 17:22:49 +0100 |
commit | 0f3f253bfdec96fba8a664da66a8bf52c04f9472 (patch) | |
tree | a5d84f4dfecac7aef203b95742ed63194815fc22 /etc/taskcluster/decision_task.py | |
parent | abb7964a8f9cba08b2783befc7b1a9aa603355f7 (diff) | |
download | servo-0f3f253bfdec96fba8a664da66a8bf52c04f9472.tar.gz servo-0f3f253bfdec96fba8a664da66a8bf52c04f9472.zip |
Move macOS WPT chunk 1 (only) from Buildbot to Taskcluster
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 166420d7515..051426fc87e 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -21,9 +21,6 @@ def main(task_for): magicleap_dev = linux_arm32_dev = linux_arm64_dev = \ android_arm32_dev_from_macos = lambda: None - # FIXME: not enabled yet - macos_wpt = 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. @@ -82,8 +79,6 @@ def main(task_for): # but should still run when testing this Python code. (See `mock.py`.) def mocked_only(): windows_release() - linux_wpt() - macos_wpt() android_x86_wpt() decisionlib.DockerWorkerTask("Indexed by task definition").find_or_create() @@ -343,7 +338,7 @@ def macos_wpt(): def macos_run_task(name): return macos_task(name).with_python2() wpt_chunks("macOS x64", macos_run_task, build_task, repo_dir="repo", - total_chunks=6, processes=4) + total_chunks=6, processes=4, chunks=[1]) def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes, |