-
Notifications
You must be signed in to change notification settings - Fork 3
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
Import some scripts from other repositories #86
Import some scripts from other repositories #86
Conversation
check-each-crate.sh
Outdated
@@ -0,0 +1,54 @@ | |||
#!/usr/bin/env bash | |||
|
|||
## A script that checks each workspace crate individually. |
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.
nit: script which runs "cargo check" per crate in a workspace individually
|
||
set -vx | ||
|
||
target_group="$1" |
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.
could you please describe how the target group look like? so it's a bit more clear how to test this e.g. the context you run it and examples of where you get these groups
#!/usr/bin/env bash | ||
|
||
## A script that generates a link to the weights comparison tool, then creates a | ||
## PR with the generated link in its description. |
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.
would be cool to add info where is it used (integrated) and why. How people get the link to PR or how is it used overall
it's outdated a bit, so closing |
Some scripts such as https://github.com/paritytech/substrate/blob/master/scripts/ci/gitlab/check-each-crate.sh and https://github.com/paritytech/cumulus/blob/master/scripts/ci/create-benchmark-pr.sh can useful for many repositories, so it's better to host them here.
I can adapt the Substrate's script usage within Substrate, after this PR is merged, through paritytech/substrate#12768. I don't intend to open a PR for the Cumulus script right now, but a ticket can be created for that.