-
Notifications
You must be signed in to change notification settings - Fork 6k
Add script to compile JIT on x86 #20315
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after fixing a couple of nits.
@@ -42,6 +42,18 @@ compared against golden reside. | |||
|
|||
## Running for Android | |||
|
|||
The test is run on a x86 emulator. To run the test locally, you must create an emulator running API level 28, and set the following screen settings in the avd's `config.ini` file: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there is an ongoing effort to move to api level 29 do we want to update this to 29?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sounds doable. I can coordinate that the Chrome infra folks.
@@ -0,0 +1,64 @@ | |||
#!/bin/bash | |||
# Copyright 2013 The Flutter Authors. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2020?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the license banner consistently uses 2013. https://github.com/flutter/engine/search?p=5&q=Copyright+2013&unscoped_q=Copyright+2013
Description
build_and_run_android_tests.sh
will be called from the LUCI recipe. The scenario will run on an x86 emulator, so JIT is required.Related Issues
flutter/flutter#55326
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
). This will ensure a smooth and quick review process.Breaking Change
Did any tests fail when you ran them? Please read handling breaking changes.