From b3647325029983568c79bdc46d203c8be6118de6 Mon Sep 17 00:00:00 2001 From: LingMan <18294-LingMan@users.noreply.gitlab.freedesktop.org> Date: Fri, 1 Aug 2025 17:42:23 +0200 Subject: [PATCH] ci/rust: Drop date from Rust release channel selection For stable Rust, specifying the patch version already uniquely identifies a toolchain build. Specifying the date would only be required for nightly releases. Reviewed-by: Eric Engestrom --- .gitlab-ci/container/build-rust.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/build-rust.sh b/.gitlab-ci/container/build-rust.sh index d96d75fb94e..1e68c94f41e 100644 --- a/.gitlab-ci/container/build-rust.sh +++ b/.gitlab-ci/container/build-rust.sh @@ -7,8 +7,8 @@ set -ex section_start rust "Building Rust toolchain" -# Pick a specific snapshot from rustup so the compiler doesn't drift on us. -RUST_VERSION=1.81.0-2024-09-05 +# Pick a specific patch version from rustup so the compiler doesn't drift on us. +RUST_VERSION=1.81.0 # For rust in Mesa, we use rustup to install. This lets us pick an arbitrary # version of the compiler, rather than whatever the container's Debian comes