mirror of
https://github.com/servo/servo.git
synced 2025-08-01 19:50:30 +01:00
Auto merge of #23356 - jdm:tc-android-mac, r=jdm
Move android mac build to taskcluster <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23356) <!-- Reviewable:end -->
This commit is contained in:
commit
81f750afa7
3 changed files with 25 additions and 14 deletions
|
@ -18,8 +18,7 @@ def main(task_for):
|
|||
|
||||
if task_for == "github-push":
|
||||
# FIXME https://github.com/servo/servo/issues/22325 implement these:
|
||||
magicleap_dev = linux_arm32_dev = linux_arm64_dev = \
|
||||
android_arm32_dev_from_macos = lambda: None
|
||||
magicleap_dev = linux_arm32_dev = linux_arm64_dev = lambda: None
|
||||
|
||||
# FIXME https://github.com/servo/servo/issues/22187
|
||||
# In-emulator testing is disabled for now. (Instead we only compile.)
|
||||
|
@ -36,6 +35,7 @@ def main(task_for):
|
|||
macos_unit,
|
||||
magicleap_dev,
|
||||
android_arm32_dev,
|
||||
android_arm32_dev_from_macos,
|
||||
android_arm32_release,
|
||||
android_x86_wpt,
|
||||
linux_arm32_dev,
|
||||
|
@ -251,6 +251,18 @@ def with_rust_nightly():
|
|||
)
|
||||
|
||||
|
||||
def android_arm32_dev_from_macos():
|
||||
return (
|
||||
macos_build_task("Dev build (macOS)")
|
||||
.with_treeherder("Android ARMv7")
|
||||
.with_script("""
|
||||
./mach bootstrap-android --accept-all-licences --build
|
||||
./mach build --android --dev
|
||||
""")
|
||||
.find_or_create("android_arm32_dev.macos." + CONFIG.git_sha)
|
||||
)
|
||||
|
||||
|
||||
def android_arm32_dev():
|
||||
return (
|
||||
android_build_task("Dev build")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue