This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch polish-msrv in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
commit c3cdd238b7ec4ea035e6ce969d07c209822b83e6 Author: Xuanwo <[email protected]> AuthorDate: Wed Oct 29 00:34:53 2025 +0800 ci: Relax msrv check thanks to rust 2024 Signed-off-by: Xuanwo <[email protected]> --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1b98fe8fa..ecdada3df 100644 --- a/Makefile +++ b/Makefile @@ -45,10 +45,7 @@ NIGHTLY_VERSION := $(shell awk -F'"' '/^channel/ {print $$2}' rust-toolchain.tom MSRV_VERSION := $(shell awk -F'"' '/^rust-version/ {print $$2}' Cargo.toml) check-msrv: - @set -e; \ - trap 'git restore Cargo.lock' EXIT; \ - cargo +$(NIGHTLY_VERSION) generate-lockfile -Z direct-minimal-versions; \ - cargo +$(MSRV_VERSION) check --locked --workspace + cargo +$(MSRV_VERSION) check --workspace check: check-fmt check-clippy check-toml cargo-machete
