-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve performance of
changelogger-validate-all.sh
(#38074)
`changelogger version` is unnecessarily calling `git` to fetch the timestamp and PR number for all the changelog entries, when all it's really using is the significance. Skip that. Then, while validating each individual project is reasonably fast, when there's 117 of them it adds up. We can improve things somewhat by processing projects in parallel, matching the number of processors in the system. On my laptop, the first takes the time from ~16.8s to ~10.7s, and the second (8 cores) takes it to ~2.3s. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/9695953187 Upstream-Ref: Automattic/jetpack@00c1de8
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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