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

feature/default_network_editable
Jyoti Puri 2 years ago committed by GitHub
parent e72170a4cd
commit d4075b099f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      .circleci/scripts/bundle-stats-commit.sh
  2. 12
      test/e2e/mv3-perf-stats/bundle-size.js

@ -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

@ -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));
}

Loading…
Cancel
Save