1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 19:10:22 +01:00

Fix for script to measure bundle size over time (#15338)

This commit is contained in:
Jyoti Puri 2022-07-27 16:37:15 +05:30 committed by GitHub
parent e72170a4cd
commit d4075b099f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 10 deletions

View File

@ -16,6 +16,12 @@ then
exit 1
fi
if [[ "${CIRCLE_BRANCH}" != "develop" ]]
then
printf 'This is not develop branch'
exit 0
fi
if [[ -z "${GITHUB_TOKEN:-}" ]]
then
printf '%s\n' 'GITHUB_TOKEN environment variable must be set'
@ -26,14 +32,6 @@ then
exit 1
fi
printf '%s\n' 'Commit the manifest version and changelog if the manifest has changed'
if [[ "${CIRCLE_BRANCH}" != "develop" ]]
then
printf 'This is not develop branch'
exit 0
fi
mkdir temp
git config --global user.email "metamaskbot@users.noreply.github.com"
@ -50,11 +48,11 @@ then
exit 0
fi
cp -R test-artifacts/chrome/mv3/bundle_size.json temp/stats
cp -R test-artifacts/chrome/mv3/bundle_size_stats.json temp/stats
echo " bundle_size_stats-${CIRCLE_SHA1}.json" >> temp/stats/fileList.txt
mv temp/stats/bundle_size.json "temp/stats/bundle_size_stats-${CIRCLE_SHA1}.json"
mv temp/stats/bundle_size_stats.json "temp/stats/bundle_size_stats-${CIRCLE_SHA1}.json"
cd temp

View File

@ -109,6 +109,18 @@ async function main() {
await fs.mkdir(outputDirectory, { recursive: true });
}
await fs.writeFile(outPath, JSON.stringify(result, null, 2));
await fs.writeFile(
`${out}/bundle_size_stats.json`,
JSON.stringify(
{
background: backgroundBundleSize,
ui: uiBundleSize,
timestamp: new Date().getTime(),
},
null,
2,
),
);
} else {
console.log(JSON.stringify(result, null, 2));
}