Skip to content

Commit

Permalink
Pin Clippy to nightly-2023-06-28
Browse files Browse the repository at this point in the history
Until the following is resolved: rust-lang/rust#112628 (comment)
  • Loading branch information
smoelius committed Jul 2, 2023
1 parent 33c4509 commit 3abbad4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion necessist/tests/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,16 @@ fn update() {

fn clippy_command(cargo_args: &[&str], rustc_args: &[&str]) -> Command {
// smoelius: The next command should match what's in scripts/clippy.sh.
// smoelius: Pin Clippy to nightly-2023-06-28 until the following is resolved:
// https://github.com/rust-lang/rust/pull/112628#issuecomment-1616750719
let mut command = Command::new("cargo");
command
.args(["+nightly", "clippy", "--all-features", "--all-targets"])
.args([
"+nightly-2023-06-28",
"clippy",
"--all-features",
"--all-targets",
])
.args(cargo_args)
.args(["--"])
.args(rustc_args)
Expand Down

0 comments on commit 3abbad4

Please sign in to comment.