From 4e6955184688d34a3930e96ca4f5083743d311fb Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 21 Feb 2023 07:17:59 +0100 Subject: [PATCH] fix: remove toolchain file to fix msrv-check on CI (#750) Also, this makes it easier to let people build with their preferred version, now that the msrv is registered in each crate rustc will refuse to build crates that are not compatible, I think. Otherwise it will download a different version of the compiler right before building it --- .github/workflows/msrv.yml | 2 -- rust-toolchain.toml | 3 --- 2 files changed, 5 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index 726539e173b..ce26c3a4c97 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -22,5 +22,3 @@ jobs: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@1.64.0 # dictated by `windows` crates effectively, IMPORTANT: adjust etc/msrv-badge.svg as well - run: make check-msrv-on-ci - continue-on-error: true # TODO: turn this off once the toolchain gets updated. There is a strange error preventing cargo to select the correct libgit2 version - # like it doesn't exist. diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index e7d0f75f3c9..00000000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,3 +0,0 @@ -[toolchain] -profile = "default" -channel = "1.65"