From fe08205c65b81f864149b222198c262a0bc758c0 Mon Sep 17 00:00:00 2001 From: CodingJellyfish Date: Thu, 19 Dec 2024 20:07:48 +0800 Subject: [PATCH] Fix Windows armv7 build (#5224) Since latest Windows SDK dropped armv7 support, we skip the MSVC windows armv7 build on GitHub actions. There's still armv7 in llvm-mingw. --- .github/workflows/windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 28f1113702..d53b33edc2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -15,6 +15,9 @@ jobs: matrix: arch: [i686, x86_64, armv7, aarch64] os: [windows-latest, ubuntu-latest] + exclude: + - arch: armv7 + os: windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2