Skip to content

Commit 5b5dd51

Browse files
authored
drop windows arm32 (#179)
1 parent d02cc96 commit 5b5dd51

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,14 +1377,6 @@ jobs:
13771377
cmake ${{ env.COMMON_CMAKE_OPTIONS }} -A x64 $(type ../options.txt) -DBUILD_opencv_world=OFF ..
13781378
cmake --build . --config Release -j 4
13791379
cmake --build . --config Release --target install
1380-
- name: build-arm
1381-
if: matrix.os-compiler.msvc-version == 'vs2019' || matrix.os-compiler.msvc-version == 'vs2022'
1382-
run: |
1383-
cd ${{ env.SOURCE_DIR }}
1384-
mkdir build-arm; cd build-arm
1385-
cmake ${{ env.COMMON_CMAKE_OPTIONS }} -A arm -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_SYSTEM_PROCESSOR=ARM $(type ../options.txt) -DBUILD_opencv_world=OFF ..
1386-
cmake --build . --config Release -j 4
1387-
cmake --build . --config Release --target install
13881380
- name: build-arm64
13891381
if: matrix.os-compiler.msvc-version == 'vs2019' || matrix.os-compiler.msvc-version == 'vs2022'
13901382
run: |
@@ -1408,11 +1400,9 @@ jobs:
14081400
mkdir ${{ env.PACKAGE_NAME }}
14091401
mkdir ${{ env.PACKAGE_NAME }}/x86
14101402
mkdir ${{ env.PACKAGE_NAME }}/x64
1411-
mkdir ${{ env.PACKAGE_NAME }}/arm
14121403
mkdir ${{ env.PACKAGE_NAME }}/arm64
14131404
Copy-Item -Verbose -Recurse -Path "${{ env.SOURCE_DIR }}\build-x86\install\*" -Destination "${{ env.PACKAGE_NAME }}\x86"
14141405
Copy-Item -Verbose -Recurse -Path "${{ env.SOURCE_DIR }}\build-x64\install\*" -Destination "${{ env.PACKAGE_NAME }}\x64"
1415-
Copy-Item -Verbose -Recurse -Path "${{ env.SOURCE_DIR }}\build-arm\install\*" -Destination "${{ env.PACKAGE_NAME }}\arm"
14161406
Copy-Item -Verbose -Recurse -Path "${{ env.SOURCE_DIR }}\build-arm64\install\*" -Destination "${{ env.PACKAGE_NAME }}\arm64"
14171407
7z a -r ${{ env.PACKAGE_NAME }}.zip ${{ env.PACKAGE_NAME }}
14181408
- name: test-x86
@@ -1427,13 +1417,6 @@ jobs:
14271417
mkdir build-x64; cd build-x64
14281418
cmake ${{ env.COMMON_CMAKE_OPTIONS }} -A x64 -DOpenCV_DIR="$env:GITHUB_WORKSPACE\${{ env.PACKAGE_NAME }}\x64" -DOpenCV_STATIC=ON ..
14291419
cmake --build . --config Release -j 4
1430-
- name: test-arm
1431-
if: matrix.os-compiler.msvc-version == 'vs2019' || matrix.os-compiler.msvc-version == 'vs2022'
1432-
run: |
1433-
cd test
1434-
mkdir build-arm; cd build-arm
1435-
cmake ${{ env.COMMON_CMAKE_OPTIONS }} -A arm -DOpenCV_DIR="$env:GITHUB_WORKSPACE\${{ env.PACKAGE_NAME }}\arm" -DOpenCV_STATIC=ON ..
1436-
cmake --build . --config Release -j 4
14371420
- name: test-arm64
14381421
if: matrix.os-compiler.msvc-version == 'vs2019' || matrix.os-compiler.msvc-version == 'vs2022'
14391422
run: |

0 commit comments

Comments
 (0)