From 40677b297de7f2c7e1be71bcece63b84bcf0304c Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Fri, 5 Sep 2025 18:08:49 +0200 Subject: [PATCH] ci: document what version to specify in RUST_VERSION Part-of: --- .gitlab-ci/container/build-rust.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-rust.sh b/.gitlab-ci/container/build-rust.sh index 9f4e8b4794a..60dd06f7658 100644 --- a/.gitlab-ci/container/build-rust.sh +++ b/.gitlab-ci/container/build-rust.sh @@ -12,7 +12,9 @@ section_start rust "Building Rust toolchain" # DEBIAN_BUILD_BASE_TAG # DEBIAN_TEST_BASE_TAG -# Pick a specific patch version from rustup so the compiler doesn't drift on us. +# This version number should match what we require in meson.build so we catch +# build issues from patches relying on new features in newer Rust versions. +# If we need to bump this, we should also bump the version in meson.build. RUST_VERSION=1.82.0 # For rust in Mesa, we use rustup to install. This lets us pick an arbitrary