From cc9767ca1eada91b8386db486cabc0e9ec4230fc Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 14 Oct 2024 13:29:57 -0500 Subject: [PATCH] Disable `cargo xwin clippy` in trampoline job (#8182) See https://github.com/rust-cross/cargo-xwin/issues/127 --- .github/workflows/ci.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52f22f68d179..4e2b8982687e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -353,16 +353,17 @@ jobs: with: tool: cargo-xwin,cargo-bloat - - name: "Install xwin dependencies" - run: sudo apt-get install --no-install-recommends -y lld llvm clang cmake ninja-build - - - name: "Clippy" - working-directory: ${{ github.workspace }}/crates/uv-trampoline - if: matrix.target-arch == 'x86_64' - run: cargo xwin clippy --all-features --locked --target x86_64-pc-windows-msvc --tests -- -D warnings - env: - XWIN_ARCH: "x86_64" - XWIN_CACHE_DIR: "${{ github.workspace }}/.xwin" + # xwin is currently broken. See https://github.com/rust-cross/cargo-xwin/issues/127 + # - name: "Install xwin dependencies" + # run: sudo apt-get install --no-install-recommends -y lld llvm clang cmake ninja-build + # + # - name: "Clippy" + # working-directory: ${{ github.workspace }}/crates/uv-trampoline + # if: matrix.target-arch == 'x86_64' + # run: cargo xwin clippy --all-features --locked --target x86_64-pc-windows-msvc --tests -- -D warnings + # env: + # XWIN_ARCH: "x86_64" + # XWIN_CACHE_DIR: "${{ github.workspace }}/.xwin" - name: "Bloat Check" working-directory: ${{ github.workspace }}/crates/uv-trampoline