From 8ad3fc774a03f2b465416e940f835fb0e0b22cbe Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 25 Jan 2025 19:05:07 -0800 Subject: [PATCH] Ignore Windows linker warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit error: linker stderr: Warning: corrupt .drectve at end of def file␍ Warning: corrupt .drectve at end of def file␍ | = note: `-D linker-messages` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(linker_messages)]` --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46b4741..ec730eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,10 @@ jobs: - name: Enable type layout randomization run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV if: matrix.rust == 'nightly' + - name: Ignore Windows linker warning + run: echo RUSTFLAGS=${RUSTFLAGS}\ -Alinker_messages >> $GITHUB_ENV + if: matrix.rust == 'nightly-x86_64-pc-windows-gnu' + shell: bash - run: cargo check --locked - run: cargo update - run: cargo check