From bc888f983b8dc2043bdc981a5b624932b5266599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=B5=E5=B0=8F=E5=87=A1?= <2672931+whyb@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:05:01 +0800 Subject: [PATCH] Remove build-windows-arm32 --- .github/workflows/ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f66685..bb51c1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,26 +119,3 @@ jobs: - name: Build run: cmake --build build --config Release - - - build-windows-arm32: - runs-on: windows-latest - steps: - - name: Check out the repository - uses: actions/checkout@v4 - - - name: Setup MSVC Developer Command Prompt - uses: TheMrMilchmann/setup-msvc-dev@v3.0.1 - with: - arch: amd64_arm - - - name: Install dependencies - run: | - choco install cmake --force - - - name: CMake Configure & Generate - run: cmake -S . -B build -DBUILD_EXAMPLE:BOOL="1" -DBUILD_BENCHMARK:BOOL="1" -DUSE_OPENMP:BOOL="1" -A ARM - - - name: Build - run: cmake --build build --config Release -