From ef3e9c694704ef99ad08dc8bab65811811846f61 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 18 Oct 2023 20:16:00 -0700 Subject: [PATCH] Remove outdated fix in windows-gnu Signed-off-by: John Nunley --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e59d5a..0b6d03b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,12 +65,6 @@ jobs: # --no-self-update is necessary because the windows environment cannot self-update rustup.exe. run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }} - run: rustup target add ${{ matrix.target }} - # https://github.com/rust-lang/rust/issues/49078 - - name: Fix windows-gnu rust-mingw - run : | - for i in crt2.o dllcrt2.o libmingwex.a libmsvcrt.a ; do - cp -f "/C/ProgramData/Chocolatey/lib/mingw/tools/install/mingw64/x86_64-w64-mingw32/lib/$i" "`rustc --print sysroot`/lib/rustlib/x86_64-pc-windows-gnu/lib" - done - run: cargo build --target ${{ matrix.target }} --all --all-features --all-targets - run: cargo test --target ${{ matrix.target }}