From 2961f44dcda6a8fb98fb778d8e4d029463c43ec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Fri, 13 Jun 2025 01:29:50 +0200 Subject: [PATCH] don't deny warnings on wasm-atomics CI job (#19604) # Objective - CI job checking for wasm atomics fails because of an unrelated lint on nightly rust - Fixes #19573 ## Solution - Don't deny warning, that's not what this job is checking anyway --- .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 d2410b57d2..a37d11ddf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -247,7 +247,7 @@ jobs: - name: Check wasm run: cargo check --target wasm32-unknown-unknown -Z build-std=std,panic_abort env: - RUSTFLAGS: "-C target-feature=+atomics,+bulk-memory -D warnings" + RUSTFLAGS: "-C target-feature=+atomics,+bulk-memory" markdownlint: runs-on: ubuntu-latest