-
Notifications
You must be signed in to change notification settings - Fork 29.7k
[macOS] Bring up "hello_world" devicelab, compilation test for x86. #109891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[macOS] Bring up "hello_world" devicelab, compilation test for x86. #109891
Conversation
e175a32 to
ce2c6fa
Compare
ce2c6fa to
c9a6eb2
Compare
a81e0de to
a2be933
Compare
yaakovschectman
left a comment
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 plus Chris' comment
a2be933 to
a6c2e71
Compare
a6c2e71 to
0cff6be
Compare
|
Blocked until #110050 lands. |
d79e2d5 to
d70df45
Compare
d70df45 to
1d3b6a1
Compare
1d3b6a1 to
988e20b
Compare
33692c6 to
7a54ddc
Compare
…for clarity, reusability
7a54ddc to
5c1b21c
Compare
Resolved with a commit that was force pushed. Original review now marked as outdated.
jmagman
left a comment
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 wasn't done reviewing this, can you make a new PR to follow up?
| appPath: appBundlePath, | ||
| operatingSystem: deviceOperatingSystem, |
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.
| appPath: appBundlePath, | |
| operatingSystem: deviceOperatingSystem, | |
| appPath: appBundlePath, | |
| operatingSystem: deviceOperatingSystem, |
| // 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(); |
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 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();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.
uh-oh sorry about that!
cbracken
left a comment
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.
🎉
Reason
Related
fixes #110079
Pre-launch Checklist
///).