From a2239c0dcab3f9b642be4318a426a0426254dfb3 Mon Sep 17 00:00:00 2001 From: jackwener Date: Thu, 16 Apr 2026 23:42:31 +0800 Subject: [PATCH] ci: check linux only (windows needs MSVC tools, covered by build job) --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aee95f5..e43ac2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,10 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: - targets: x86_64-pc-windows-msvc,x86_64-unknown-linux-gnu + targets: x86_64-unknown-linux-gnu - - name: cargo check all targets - run: | - cargo check --target x86_64-unknown-linux-gnu - cargo check --target x86_64-pc-windows-msvc + - name: cargo check linux target + run: cargo check --target x86_64-unknown-linux-gnu build: needs: check