From 0780f8c37e1393b36344b0a6ed38cda34f0c474d Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 15 Nov 2018 09:24:22 -0500 Subject: [PATCH 1/3] Remove android emulator tests from buildbot CI. --- etc/ci/buildbot_steps.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/etc/ci/buildbot_steps.yml b/etc/ci/buildbot_steps.yml index f5e5604afd8..941f9f861d8 100644 --- a/etc/ci/buildbot_steps.yml +++ b/etc/ci/buildbot_steps.yml @@ -207,8 +207,6 @@ android-x86: - ./etc/ci/clean_build_artifacts.sh - ./mach bootstrap-android --accept-all-licences --build --emulator-x86 - env --unset ANDROID_NDK --unset ANDROID_SDK ./mach build --target i686-linux-android --release - - env --unset ANDROID_NDK --unset ANDROID_SDK ./mach test-android-startup --release - - env --unset ANDROID_NDK --unset ANDROID_SDK ./mach test-wpt-android --release /_mozilla/mozilla/DOMParser.html /_mozilla/mozilla/webgl/context_creation_error.html - bash ./etc/ci/lockfile_changed.sh - ./etc/ci/clean_build_artifacts.sh From cdb5b60202b24b5173eab5f1bda04f6c8da642b9 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 15 Nov 2018 09:26:07 -0500 Subject: [PATCH 2/3] Remove android emulator tests from taskcluster. --- etc/taskcluster/decision_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index bc557c57ee8..bd411d6bc34 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -13,7 +13,7 @@ def main(task_for, mock=False): if CONFIG.git_ref in ["refs/heads/auto", "refs/heads/try", "refs/heads/try-taskcluster"]: linux_tidy_unit() android_arm32() - android_x86() + #android_x86() windows_dev() if mock: windows_release() From cf998d5c58c29a148b36b934efdb6e0a93970066 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 15 Nov 2018 09:57:39 -0500 Subject: [PATCH 3/3] Mock android x86 task instead of commenting it. --- etc/taskcluster/decision_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index bd411d6bc34..509503123ce 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -13,12 +13,12 @@ def main(task_for, mock=False): if CONFIG.git_ref in ["refs/heads/auto", "refs/heads/try", "refs/heads/try-taskcluster"]: linux_tidy_unit() android_arm32() - #android_x86() windows_dev() if mock: windows_release() linux_wpt() linux_build_task("Indexed by task definition").find_or_create() + android_x86() # https://tools.taskcluster.net/hooks/project-servo/daily elif task_for == "daily":