[macOS] Bring up "hello_world" devicelab, compilation test for x86.#109891
Merged
auto-submit[bot] merged 10 commits intoflutter:masterfrom Aug 24, 2022
Merged
[macOS] Bring up "hello_world" devicelab, compilation test for x86.#109891auto-submit[bot] merged 10 commits intoflutter:masterfrom
auto-submit[bot] merged 10 commits intoflutter:masterfrom
Conversation
a-wallen
commented
Aug 19, 2022
e175a32 to
ce2c6fa
Compare
ce2c6fa to
c9a6eb2
Compare
a81e0de to
a2be933
Compare
cbracken
reviewed
Aug 22, 2022
yaakovschectman
approved these changes
Aug 22, 2022
Contributor
yaakovschectman
left a comment
There was a problem hiding this comment.
LGTM plus Chris' comment
a2be933 to
a6c2e71
Compare
jmagman
previously requested changes
Aug 22, 2022
cbracken
reviewed
Aug 22, 2022
a6c2e71 to
0cff6be
Compare
keyonghan
reviewed
Aug 23, 2022
Contributor
Author
|
Blocked until #110050 lands. |
d79e2d5 to
d70df45
Compare
d70df45 to
1d3b6a1
Compare
jmagman
reviewed
Aug 23, 2022
1d3b6a1 to
988e20b
Compare
33692c6 to
7a54ddc
Compare
added 10 commits
August 23, 2022 17:49
…for clarity, reusability
7a54ddc to
5c1b21c
Compare
Resolved with a commit that was force pushed. Original review now marked as outdated.
jmagman
reviewed
Aug 25, 2022
Member
jmagman
left a comment
There was a problem hiding this comment.
I wasn't done reviewing this, can you make a new PR to follow up?
Comment on lines
+1410
to
+1411
| appPath: appBundlePath, | ||
| operatingSystem: deviceOperatingSystem, |
Member
There was a problem hiding this comment.
Suggested change
| appPath: appBundlePath, | |
| operatingSystem: deviceOperatingSystem, | |
| appPath: appBundlePath, | |
| operatingSystem: deviceOperatingSystem, |
Comment on lines
1405
to
1407
| // IPAs are created manually, https://flutter.dev/ios-release/ | ||
| await exec('tar', <String>['-zcf', 'build/app.ipa', appPath]); | ||
| await exec('tar', <String>['-zcf', 'build/app.ipa', appBundlePath]); | ||
| releaseSizeInBytes = await file('$cwd/build/app.ipa').length(); |
Member
There was a problem hiding this comment.
This comment doesn't make sense, ipa isn't a thing on macOS. How about:
// Validate changes in Dart snapshot format and data layout do not change compression size.
await exec('tar', <String>['-zcf', 'build/app.tar.gz', appPath]);
releaseSizeInBytes = await file('$cwd/build/app.tar.gz').length();
Contributor
Author
There was a problem hiding this comment.
uh-oh sorry about that!
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/packages
that referenced
this pull request
Aug 25, 2022
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/plugins
that referenced
this pull request
Aug 25, 2022
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/plugins
that referenced
this pull request
Aug 26, 2022
8 tasks
8 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reason
Related
fixes #110079
Pre-launch Checklist
///).