-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: Improve speed of
tools/changelogger-release.sh
The script has gotten a bit slow, since it was running `check-intra-monorepo-deps.sh` individually for each project to pass either `-u` or `-U` depending on whether the project was included in the release or not. We can speed it up by running `check-intra-monorepo-deps.sh -U` just once, and then looking at the git diff to see whether any changelog entries seem to be needed. Also, we can then drop the `PACKAGE_VERSIONS_CACHE` thing from `check-intra-monorepo-deps.sh` that was done in a prior speedup attempt. And finally, skip trying to handle the "monorepo" pseudo-package, it won't work and prevents releases of projects depended on by the monorepo root.
- Loading branch information
Showing
2 changed files
with
26 additions
and
31 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
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