Unverified Commit 75a0a725 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[devicelab] measure entire release folder size, zipped (#115597)

parent 78390a08
......@@ -1513,19 +1513,18 @@ class CompileTest {
watch.start();
await flutter('build', options: options);
watch.stop();
final String basename = path.basename(cwd);
final String exePath = path.join(
final String buildPath = path.join(
cwd,
'build',
'windows',
'runner',
'release',
'$basename.exe');
final File exe = file(exePath);
);
// On Windows, we do not produce a single installation package file,
// rather a directory containing an .exe and .dll files.
// The release size is set to the size of the produced .exe file
releaseSizeInBytes = exe.lengthSync();
// rather a directory containing an .exe and .dll files. Zip them all
// together to get an approximate release size.
await exec('tar.exe', <String>['-zcf', 'build/app.tar.gz', buildPath]);
releaseSizeInBytes = file('build/app.tar.gz').lengthSync();
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment