diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-07-12 16:47:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-12 16:47:26 -0400 |
commit | 8af9409339f7eff0e716b4d97d38a6a774329d45 (patch) | |
tree | ad7ab5a2b64b330be76cafd84a94b15a11201925 /python/servo | |
parent | 4dfb41fdb3c085607a83d200d12cff72c1048128 (diff) | |
parent | bfb3f2f66ddfa024136bb094a447fb6119f57c2f (diff) | |
download | servo-8af9409339f7eff0e716b4d97d38a6a774329d45.tar.gz servo-8af9409339f7eff0e716b4d97d38a6a774329d45.zip |
Auto merge of #21166 - servo:android-x86, r=jdm
Test Android x86 on CI
Fixes https://github.com/servo/servo/issues/21124
<!-- 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/21166)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/bootstrap_commands.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 699981ff6d1..3be7a208815 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -58,10 +58,7 @@ class MachCommands(CommandBase): @Command('bootstrap-android', description='Install the Android SDK and NDK.', category='bootstrap') - @CommandArgument('--update', - action='store_true', - help='Run SDK component install and emulator image creation again') - def bootstrap_android(self, update=False): + def bootstrap_android(self): ndk = "android-ndk-r12b-{system}-{arch}" tools = "sdk-tools-{system}-4333796" |