Skip to content

Commit

Permalink
Drop armv7 for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingJellyfish committed Dec 19, 2024
1 parent 93cad2b commit f3e3dfe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
matrix:
arch: [i686, x86_64, armv7, aarch64]
os: [windows-latest, ubuntu-latest]
exclude:
- arch: aarch64
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -31,6 +34,8 @@ jobs:
echo "cmake_arch=Win32" >> $GITHUB_ENV
elif [ ${{ matrix.arch }} = "x86_64" ]; then
echo "cmake_arch=x64" >> $GITHUB_ENV
elif [ ${{ matrix.arch }} = "armv7" ]; then
echo "cmake_arch=ARM" >> $GITHUB_ENV
else
echo "cmake_arch=ARM64" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit f3e3dfe

Please sign in to comment.