From 019347c6bf377f78ee627c28442bd4b04ea98adc Mon Sep 17 00:00:00 2001 From: Ammar Arif Date: Thu, 29 Aug 2024 13:26:17 -0400 Subject: [PATCH] downgrade to yesterday's --- .devcontainer/Dockerfile | 2 +- scripts/clippy.sh | 2 +- scripts/rust_fmt.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 839d3ea9e9..9f17084fd6 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -28,7 +28,7 @@ ENV TABLEGEN_170_PREFIX=/usr/lib/llvm-17 # To allow independent workflow of the container, the rust-toolchain is explicitely given. RUN echo "1.80.0" > rust_toolchain_version # Make sure to sync the nightly version with the scripts in ./scripts -RUN echo "nightly-2024-08-29" > nightly_rust_toolchain_version +RUN echo "nightly-2024-08-28" > nightly_rust_toolchain_version # Install cargo-binstall RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash diff --git a/scripts/clippy.sh b/scripts/clippy.sh index 9d22a72936..43f9b5f208 100755 --- a/scripts/clippy.sh +++ b/scripts/clippy.sh @@ -8,7 +8,7 @@ set -x set -o pipefail run_clippy() { - cargo +nightly-2024-08-29 clippy --all-targets "$@" -- -D warnings -D future-incompatible -D nonstandard-style -D rust-2018-idioms -D unused -D missing-debug-implementations + cargo +nightly-2024-08-28 clippy --all-targets "$@" -- -D warnings -D future-incompatible -D nonstandard-style -D rust-2018-idioms -D unused -D missing-debug-implementations } run_clippy --all-features --workspace diff --git a/scripts/rust_fmt.sh b/scripts/rust_fmt.sh index 57b889fc1d..db5636de2e 100755 --- a/scripts/rust_fmt.sh +++ b/scripts/rust_fmt.sh @@ -1,3 +1,3 @@ #!/bin/bash -cargo +nightly-2024-08-29 fmt --check --all -- "$@" +cargo +nightly-2024-08-28 fmt --check --all -- "$@"