Skip to content

Commit a071dc8

Browse files
authored
Update some links and information for cargo-bisect-rustc (#1657)
1 parent 513a1e4 commit a071dc8

File tree

3 files changed

+8
-33
lines changed

3 files changed

+8
-33
lines changed

src/compiler-debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ on *why* it was changed. See [this tutorial][bisect-tutorial] on how to use
269269
it.
270270

271271
[bisect]: https://github.com/rust-lang/cargo-bisect-rustc
272-
[bisect-tutorial]: https://github.com/rust-lang/cargo-bisect-rustc/blob/master/TUTORIAL.md
272+
[bisect-tutorial]: https://rust-lang.github.io/cargo-bisect-rustc/tutorial.html
273273

274274
## Downloading Artifacts from Rust's CI
275275

src/fuzzing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Here are a few things you can do to help the Rust project after filing an ICE.
8787
- Minimize the test case (see below)
8888
- Add the minimal test case to [Glacier][glacier]
8989

90-
[bisect]: https://github.com/rust-lang/cargo-bisect-rustc/blob/master/TUTORIAL.md
90+
[bisect]: https://rust-lang.github.io/cargo-bisect-rustc/
9191

9292
## Minimization
9393

src/notification-groups/cleanup-crew.md

+6-31
Original file line numberDiff line numberDiff line change
@@ -77,38 +77,13 @@ various builds of rustc. For recent regressions, it is even able to
7777
use the builds from our CI to track down the regression to a specific
7878
PR; for older regressions, it will simply identify a nightly.
7979

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.
8485

8586
[cargo-bisect-rustc]: https://github.com/rust-lang/cargo-bisect-rustc/
8687
[learn]: https://blog.rust-lang.org/inside-rust/2019/12/18/bisecting-rust-compiler.html
8788
[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

Comments
 (0)