mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Add android-mac build job to taskcluster.
This commit is contained in:
parent
af077f8cf7
commit
34d3c5e1ce
2 changed files with 15 additions and 12 deletions
|
@ -124,16 +124,6 @@ linux-nightly:
|
||||||
- rm -rf ./python/_virtualenv
|
- rm -rf ./python/_virtualenv
|
||||||
- ./etc/ci/clean_build_artifacts.sh
|
- ./etc/ci/clean_build_artifacts.sh
|
||||||
|
|
||||||
android-mac:
|
|
||||||
commands:
|
|
||||||
- ./mach clean-nightlies --keep 3 --force
|
|
||||||
- ./mach clean-cargo-cache --keep 3 --force
|
|
||||||
- ./mach bootstrap-android --accept-all-licences --build
|
|
||||||
- ./mach build --android --dev
|
|
||||||
- ./mach package --android --dev
|
|
||||||
- bash ./etc/ci/lockfile_changed.sh
|
|
||||||
- ./etc/ci/clean_build_artifacts.sh
|
|
||||||
|
|
||||||
magicleap:
|
magicleap:
|
||||||
env:
|
env:
|
||||||
MAGICLEAP_SDK: /Users/servo/magicleap/v0.17.0
|
MAGICLEAP_SDK: /Users/servo/magicleap/v0.17.0
|
||||||
|
@ -225,6 +215,7 @@ arm64:
|
||||||
linux-dev: []
|
linux-dev: []
|
||||||
mac-dev-unit: []
|
mac-dev-unit: []
|
||||||
windows-msvc-dev: []
|
windows-msvc-dev: []
|
||||||
|
android-mac: []
|
||||||
android: []
|
android: []
|
||||||
android-x86: []
|
android-x86: []
|
||||||
mac-rel-wpt1: []
|
mac-rel-wpt1: []
|
||||||
|
|
|
@ -18,8 +18,7 @@ def main(task_for):
|
||||||
|
|
||||||
if task_for == "github-push":
|
if task_for == "github-push":
|
||||||
# FIXME https://github.com/servo/servo/issues/22325 implement these:
|
# FIXME https://github.com/servo/servo/issues/22325 implement these:
|
||||||
magicleap_dev = linux_arm32_dev = linux_arm64_dev = \
|
magicleap_dev = linux_arm32_dev = linux_arm64_dev = lambda: None
|
||||||
android_arm32_dev_from_macos = lambda: None
|
|
||||||
|
|
||||||
# FIXME https://github.com/servo/servo/issues/22187
|
# FIXME https://github.com/servo/servo/issues/22187
|
||||||
# In-emulator testing is disabled for now. (Instead we only compile.)
|
# In-emulator testing is disabled for now. (Instead we only compile.)
|
||||||
|
@ -36,6 +35,7 @@ def main(task_for):
|
||||||
macos_unit,
|
macos_unit,
|
||||||
magicleap_dev,
|
magicleap_dev,
|
||||||
android_arm32_dev,
|
android_arm32_dev,
|
||||||
|
android_arm32_dev_from_macos,
|
||||||
android_arm32_release,
|
android_arm32_release,
|
||||||
android_x86_wpt,
|
android_x86_wpt,
|
||||||
linux_arm32_dev,
|
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():
|
def android_arm32_dev():
|
||||||
return (
|
return (
|
||||||
android_build_task("Dev build")
|
android_build_task("Dev build")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue