-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
bootstrap: vendor crates required by opt-dist to collect profiles #125465
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Types and functions shared across tools in this workspace. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,30 @@ | ||
//! Types and functions shared across tools in this workspace. | ||
|
||
pub mod ci; | ||
pub mod git; | ||
pub mod metrics; | ||
pub mod stage0_parser; | ||
pub mod util; | ||
|
||
/// The default set of crates for opt-dist to collect LLVM profiles. | ||
pub const LLVM_PGO_CRATES: &[&str] = &[ | ||
"syn-1.0.89", | ||
"cargo-0.60.0", | ||
"serde-1.0.136", | ||
"ripgrep-13.0.0", | ||
"regex-1.5.5", | ||
"clap-3.1.6", | ||
"hyper-0.14.18", | ||
]; | ||
|
||
/// The default set of crates for opt-dist to collect rustc profiles. | ||
pub const RUSTC_PGO_CRATES: &[&str] = &[ | ||
"externs", | ||
"ctfe-stress-5", | ||
"cargo-0.60.0", | ||
"token-stream-stress", | ||
"match-stress", | ||
"tuple-stress", | ||
"diesel-1.4.8", | ||
"bitmaps-3.1.0", | ||
]; |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@wesleywiser @Kobzol
It currently only includes dependencies of rustc-perf, as those training data crates are not part of the rustc-perf workspace (also the reason we manually
cargo vendor
them). Should we license-check those training data crates as well?(moved to a thread for following the discussion easier)
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 think that we should check the licenses of everything that we vendor, but I'm not 100% sure.
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.
Including the web frontend code? 🤯
https://github.com/rust-lang/rustc-perf/blob/master/site/frontend/package.json
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.
My assumption was that we should check licences of everything that we vendor, although I'm not sure if we currently do that. If that is needed, it would probably be the simplest if we just deleted the frontend code before packaging it in the source tarball.