From c513340c89af5539ba9562c52ca65c58d194777c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 11 Jan 2025 17:36:46 +0200 Subject: [PATCH] ci: Update to Rust 1.84 and cargo-c 0.10.8 Part-of: --- .gitlab-image-tags.yml | 6 +++--- ci/scripts/install-rust.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index 06ee8e51d1..0cc78ac5d2 100644 --- a/.gitlab-image-tags.yml +++ b/.gitlab-image-tags.yml @@ -5,9 +5,9 @@ variables: # If you are hacking on them or need a them to rebuild, its enough # to change any part of the string of the image you want. ### - FEDORA_TAG: '2024-11-29.0' + FEDORA_TAG: '2025-01-11.0' - DEBIAN_TAG: '2024-11-29.0' + DEBIAN_TAG: '2025-01-11.0' INDENT_TAG: '2024-05-28.0' @@ -15,4 +15,4 @@ variables: ABI_CHECK_TAG: '2025-01-08.1' - WINDOWS_TAG: '2024-11-29.0' + WINDOWS_TAG: '2025-01-11.0' diff --git a/ci/scripts/install-rust.sh b/ci/scripts/install-rust.sh index b8ef5b48bb..41a90b6978 100644 --- a/ci/scripts/install-rust.sh +++ b/ci/scripts/install-rust.sh @@ -4,7 +4,7 @@ set -eux # Install Rust RUSTUP_VERSION=1.27.1 -RUST_VERSION=1.83.0 +RUST_VERSION=1.84.0 RUST_ARCH="x86_64-unknown-linux-gnu" RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init @@ -19,7 +19,7 @@ chmod +x rustup-init; rm rustup-init; chmod -R a+w $RUSTUP_HOME $CARGO_HOME -cargo install --locked cargo-c --version 0.10.7+cargo-0.84.0 +cargo install --locked cargo-c --version 0.10.8+cargo-0.85.0 rustup --version cargo --version