File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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]
You can’t perform that action at this time.
0 commit comments