From 7c4a1f9d874b05415f4da1f45d74b8b9beb235bd Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Mon, 26 May 2025 22:01:10 +0200 Subject: [PATCH] Unpin nightly in CI (#19278) # Objective In #19253 we pinned nightly due to a bug in Miri. That issue was resolved and the latest Miri should be usable for us again. ## Solution - Use latest nightly again ## Testing - I tested today's Miri locally with `RUSTUP_TOOLCHAIN=nightly-2025-05-18 MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-disable-isolation" RUSTFLAGS="-Zrandomize-layout" cargo miri test -p bevy_ecs` --- .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 2a0610cf03..37db848558 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-2025-05-16 # pinned until a fix for https://github.com/rust-lang/miri/issues/4323 is released + NIGHTLY_TOOLCHAIN: nightly RUSTFLAGS: "-D warnings" BINSTALL_VERSION: "v1.12.3"