Skip to content

Commit ab411fc

Browse files
authored
Update build_wheels_windows_arm64.yml
1 parent 3f06ebc commit ab411fc

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/build_wheels_windows_arm64.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,8 @@ jobs:
5252
fetch-depth: 0
5353
- name: Initialize and update submodules
5454
run: git submodule update --init --recursive
55-
- name: Apply ARM64 DNN and CPU-detect patch to OpenCV submodule
56-
run: |
57-
git apply "${{ github.workspace }}/fix-arm64-dnn.patch" --directory=opencv
58-
55+
- name: Apply ARM64 DNN patch to OpenCV submodule
56+
run: git apply "${{ github.workspace }}/fix-arm64-dnn.patch" --directory=opencv
5957
- name: Set up Python ${{ matrix.python-version }}
6058
uses: actions/setup-python@v4
6159
with:
@@ -138,7 +136,6 @@ jobs:
138136
python -m pip install pylint==2.15.9
139137
cd ${{ github.workspace }}\tests
140138
python -m pylint $PYLINT_TEST_FILE
141-
142139
Release_rolling:
143140
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
144141
needs: [Build, Test]
@@ -167,7 +164,6 @@ jobs:
167164
run: |
168165
python -m pip install twine
169166
python -m twine upload -u ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_ROLLING_USERNAME }} -p ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_ROLLING_PASSWORD }} --skip-existing wheelhouse/opencv_contrib_python_headless_rolling-*
170-
171167
Pre-release:
172168
if: github.event_name == 'release' && github.event.release.prerelease
173169
needs: [Build, Test]
@@ -184,7 +180,6 @@ jobs:
184180
run: |
185181
python -m pip install twine
186182
python -m twine upload --repository testpypi -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/opencv_*
187-
188183
Release:
189184
if: github.event_name == 'release' && !github.event.release.prerelease
190185
needs: [Build, Test]

0 commit comments

Comments
 (0)