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
This commit is contained in:
François Mockers 2025-06-13 01:29:50 +02:00 committed by GitHub
parent bab31e3777
commit 2961f44dcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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