-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Script that checks API/ABI compatibility between versions #1552
Conversation
Motivation: It's hard to track API/ABI changes and list everything correctly in release notes. This script produces summary of all changes made between versions. Modifications: - Add `./scripts/japicmp.sh`; Result: Scripts that summarizes all API/ABI changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you run it through shellcheck?
scripts/japicmp.sh
Outdated
|
||
# All servicetalk modules except: servicetalk-benchmarks, servicetalk-bom, servicetalk-examples, servicetalk-gradle-plugin-internal: | ||
# All servicetalk modules except: | ||
# servicetalk-benchmarks, servicetalk-bom, servicetalk-examples, servicetalk-gradle-plugin-internal | ||
ARTIFACTS="$(ls -d -- */ | grep 'servicetalk-' | sed 's/.$//' | \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I usually prefer find
vs ls
if the names may contain spaces.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's known that the names of modules don't contain spaces
Motivation: It's hard to track API/ABI changes and list everything correctly in release notes. This script produces a summary of all changes made between versions. Modifications: - Add `./scripts/japicmp.sh`; Result: Script that summarizes all API/ABI changes.
Motivation:
It's hard to track API/ABI changes and list everything correctly in
release notes. This script produces a summary of all changes made
between versions.
Modifications:
./scripts/japicmp.sh
;Result:
Script that summarizes all API/ABI changes.