diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-11-06 04:01:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-06 04:01:34 -0500 |
commit | 535ea9674f1c80cb911a10c9333194b6c0f919ad (patch) | |
tree | bd8935534d105e089fbd055714731cc55f040325 | |
parent | e217672c1ab665a68aca36bb5086956254604e75 (diff) | |
parent | e57859fe492c17f2fb316a5a6d965fe7b6e981b6 (diff) | |
download | servo-535ea9674f1c80cb911a10c9333194b6c0f919ad.tar.gz servo-535ea9674f1c80cb911a10c9333194b6c0f919ad.zip |
Auto merge of #22117 - asajeffrey:magicleap-ci, r=jdm
Add magicleap builder
<!-- Please describe your changes on the following line: -->
Add a magicleap builder to `etc/ci/buildbot_steps.yml` to gate releases on building the magicleap library. This doesn't yet check for building the magicleap app, or add a nightly release. That'll be a later PR.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not require tests because it's adding a build test
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- 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/22117)
<!-- Reviewable:end -->
-rw-r--r-- | etc/ci/buildbot_steps.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/ci/buildbot_steps.yml b/etc/ci/buildbot_steps.yml index 6e895d30597..f5e5604afd8 100644 --- a/etc/ci/buildbot_steps.yml +++ b/etc/ci/buildbot_steps.yml @@ -229,6 +229,17 @@ android-nightly: - ./mach upload-nightly maven - ./etc/ci/clean_build_artifacts.sh +magicleap: + env: + MAGICLEAP_SDK: /Users/servo/magicleap/v0.17.0 + commands: + - ./mach clean-nightlies --keep 3 --force + - ./mach clean-cargo-cache --keep 3 --force + - ./etc/ci/clean_build_artifacts.sh + - ./mach build --magicleap --dev + - bash ./etc/ci/lockfile_changed.sh + - ./etc/ci/clean_build_artifacts.sh + arm32: env: AR: /usr/bin/arm-linux-gnueabihf-ar |