cargo-bisect-rustc
cargo-bisect-rustc copied to clipboard
Bisects rustc, either nightlies or CI artifacts
can cargo-bisect-rustc respect the .cargo/config.toml? (Should it already be doing so?) As part of dissecting https://github.com/rust-lang/rust/issues/111888, I was looking into adding a linker flag to the rustc invocations via a...
Let's say we would naturally try to bisect a change between the 1st and the 30th of a month, the bisect might go something like this: check 30th check 1st...
After some time, bisect will always check 2 rust versions per month as it goes back in time, but when bisecting stable-to-stable regressions, this still takes a lot of time....
`cargo-bisect-rustc --help` ``` Usage: cargo Commands: bisect-rustc Bisects rustc toolchains with rustup help Print this message or the help of the given subcommand(s) Options: -h, --help Print help ``` `cargo-bisect-rustc...
I'm having trouble using `cargo-bisect-rustc` on NixOS. I think the trouble is that I can't run the binaries installed by `cargo-bisect-rustc`, whereas I *can* run binaries installed via `rustup`: ```...
Closes #258 Adds two options for bypassing verifying the start and end of nightly and CI ranges. If no start nightly has been provided, the start date will be detected...
It would be useful to skip verification bisection start/end if (using Playground or otherwise) we already know a valid regression range.
Hey all, Just trying out `cargo-bisect-rustc` today. When I try to run: ``` cargo bisect-rustc --test-dir . --start=801821d15 --end=40336865f --regress error --preserve -vv -- version ``` (I was trying an...
I invoked the program with `cargo-bisect-rustc --start 2023-01-27 --regress ice`. The output of the `reproduce with` section, however, was ```bash cargo bisect-rustc 2023-01-27 --regress ice ``` Missing the `--start` portion...
If the `--end` date is not specified, then cargo-bisect-rustc will [assume the end date is today](https://github.com/rust-lang/cargo-bisect-rustc/blob/1b45158bd499c942f83fb9fd326cacd66933ace1/src/main.rs#L867-L868). However, there is a window of an hour or so from UTC midnight until...