@@ -77,38 +77,13 @@ various builds of rustc. For recent regressions, it is even able to
77
77
use the builds from our CI to track down the regression to a specific
78
78
PR; for older regressions, it will simply identify a nightly.
79
79
80
- To learn to use [ cargo-bisect-rustc] , check out [ this blog
81
- post] [ learn ] , which gives a quick introduction to how it works. You
82
- can also ask questions at the Zulip stream
83
- [ ` #t-compiler/cargo-bisect-rustc ` ] [ zcbr ] , or help in improving the tool.
80
+ To learn to use [ cargo-bisect-rustc] , check out [ this blog post] [ learn ] , which
81
+ gives a quick introduction to how it works. Additionally, there is a [ Guide]
82
+ which goes into more detail on how to use it. You can also ask questions at
83
+ the Zulip stream [ ` #t-compiler/cargo-bisect-rustc ` ] [ zcbr ] , or help in
84
+ improving the tool.
84
85
85
86
[ cargo-bisect-rustc ] : https://github.com/rust-lang/cargo-bisect-rustc/
86
87
[ learn ] : https://blog.rust-lang.org/inside-rust/2019/12/18/bisecting-rust-compiler.html
87
88
[ zcbr ] : https://rust-lang.zulipchat.com/#narrow/stream/217417-t-compiler.2Fcargo-bisect-rustc
88
-
89
- ### identifying the range of PRs in a nightly
90
-
91
- If the regression occurred more than 90 days ago, then
92
- cargo-bisect-rustc will not able to identify the particular PR that
93
- caused the regression, just the nightly build. In that case, we can
94
- identify the set of PRs that this corresponds to by using the git
95
- history.
96
-
97
- The command ` rustc +nightly -vV ` will cause rustc to output a number
98
- of useful bits of version info, including the ` commit-hash ` . Given the
99
- commit-hash of two nightly versions, you can find all of PRs that have
100
- landed in between by taking the following steps:
101
-
102
- 1 . Go to an update checkout of the [ rust-lang/rust] repository
103
- 2 . Execute the command ` git log --author=bors --format=oneline SHA1..SHA2 `
104
- * This will list out all of the commits by bors, which is our merge bot
105
- * Each commit corresponds to one PR, and information about the PR should be in the description
106
- 3 . Copy and paste that information into the bug report
107
-
108
- Often, just eye-balling the PR descriptions (which are included in the
109
- commit messages) will give you a good idea which one likely caused the
110
- problem. But if you're unsure feel free to just ping the compiler team
111
- (` @rust-lang/compiler ` ) or else to ping the authors of the PR
112
- themselves.
113
-
114
- [ rust-lang/rust ] : https://github.com/rust-lang/rust/
89
+ [ Guide ] : https://rust-lang.github.io/cargo-bisect-rustc/
0 commit comments