From 6397a28bbf9267438b62581265f6cadb64e9c8d1 Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Sat, 17 May 2025 13:24:20 +0200 Subject: [PATCH] Pin nightly due to miri issue (#19253) # Objective The required miri check is currently failing due to rust-lang/miri#4323 Let's pin nightly to yesterday to not be blocked today. ## Solution - Pinned nightly to `nightly-2025-05-16` ## Testing - Let's see if the pipeline is green on this PR :D --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37db848558..2a0610cf03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ env: CARGO_PROFILE_TEST_DEBUG: 0 CARGO_PROFILE_DEV_DEBUG: 0 # If nightly is breaking CI, modify this variable to target a specific nightly version. - NIGHTLY_TOOLCHAIN: nightly + NIGHTLY_TOOLCHAIN: nightly-2025-05-16 # pinned until a fix for https://github.com/rust-lang/miri/issues/4323 is released RUSTFLAGS: "-D warnings" BINSTALL_VERSION: "v1.12.3"