Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bf6cc1c

Browse filesBrowse files
committed
Test
1 parent c7a05d3 commit bf6cc1c
Copy full SHA for bf6cc1c

File tree

1 file changed

+74
-73
lines changed
Filter options

1 file changed

+74
-73
lines changed

‎.github/workflows/build_wheels.yml

Copy file name to clipboardExpand all lines: .github/workflows/build_wheels.yml
+74-73Lines changed: 74 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ jobs:
247247
path: dist/opencv*.tar.gz
248248

249249
test_release_opencv_python_all:
250-
needs: [build, build-windows-x86_64, build_sdist]
250+
# needs: [build, build-windows-x86_64, build_sdist]
251+
needs: [build_sdist]
251252
runs-on: ubuntu-latest
252253
environment:
253254
name: test-opencv-python-release
@@ -266,75 +267,75 @@ jobs:
266267
skip_existing: true
267268
verbose: true
268269

269-
release_opencv_python:
270-
if: startsWith(github.ref, 'refs/tags/v')
271-
needs: [build, build-windows-x86_64, build_sdist]
272-
runs-on: ubuntu-latest
273-
environment: opencv-python-release
274-
steps:
275-
- uses: actions/download-artifact@v2
276-
with:
277-
name: wheels
278-
path: wheelhouse/
279-
280-
- name: Upload wheels ${{ matrix.os }}
281-
run: |
282-
python -m pip install twine
283-
python -m twine upload -u ${{ secrets.OPENCV_PYTHON_USERNAME }} -p ${{ secrets.OPENCV_PYTHON_PASSWORD }} --skip-existing wheelhouse/opencv_python-*
284-
285-
release_opencv_contrib_python:
286-
if: startsWith(github.ref, 'refs/tags/v')
287-
needs: [build, build-windows-x86_64, build_sdist]
288-
runs-on: ubuntu-latest
289-
environment: opencv-python-release
290-
defaults:
291-
run:
292-
shell: bash
293-
steps:
294-
- uses: actions/download-artifact@v2
295-
with:
296-
name: wheels
297-
path: wheelhouse/
298-
299-
- name: Upload wheels ${{ matrix.os }}
300-
run: |
301-
python -m pip install twine
302-
python -m twine upload -u ${{ secrets.OPENCV_CONTRIB_PYTHON_USERNAME }} -p ${{ secrets.OPENCV_CONTRIB_PYTHON_PASSWORD }} --skip-existing wheelhouse/opencv_contrib_python-*
303-
304-
release_opencv_python_headless:
305-
if: startsWith(github.ref, 'refs/tags/v')
306-
needs: [build, build-windows-x86_64, build_sdist]
307-
runs-on: ubuntu-latest
308-
environment: opencv-python-release
309-
defaults:
310-
run:
311-
shell: bash
312-
steps:
313-
- uses: actions/download-artifact@v2
314-
with:
315-
name: wheels
316-
path: wheelhouse/
317-
318-
- name: Upload wheels ${{ matrix.os }}
319-
run: |
320-
python -m pip install twine
321-
python -m twine upload -u ${{ secrets.OPENCV_PYTHON_HEADLESS_USERNAME }} -p ${{ secrets.OPENCV_PYTHON_HEADLESS_PASSWORD }} --skip-existing wheelhouse/opencv_python_headless-*
322-
323-
release_opencv_contrib_python_headless:
324-
if: startsWith(github.ref, 'refs/tags/v')
325-
needs: [build, build-windows-x86_64, build_sdist]
326-
runs-on: ubuntu-latest
327-
environment: opencv-python-release
328-
defaults:
329-
run:
330-
shell: bash
331-
steps:
332-
- uses: actions/download-artifact@v2
333-
with:
334-
name: wheels
335-
path: wheelhouse/
336-
337-
- name: Upload wheels ${{ matrix.os }}
338-
run: |
339-
python -m pip install twine
340-
python -m twine upload -u ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_USERNAME }} -p ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_PASSWORD }} --skip-existing wheelhouse/opencv_contrib_python_headless-*
270+
# release_opencv_python:
271+
# if: startsWith(github.ref, 'refs/tags/v')
272+
# needs: [build, build-windows-x86_64, build_sdist]
273+
# runs-on: ubuntu-latest
274+
# environment: opencv-python-release
275+
# steps:
276+
# - uses: actions/download-artifact@v2
277+
# with:
278+
# name: wheels
279+
# path: wheelhouse/
280+
281+
# - name: Upload wheels ${{ matrix.os }}
282+
# run: |
283+
# python -m pip install twine
284+
# python -m twine upload -u ${{ secrets.OPENCV_PYTHON_USERNAME }} -p ${{ secrets.OPENCV_PYTHON_PASSWORD }} --skip-existing wheelhouse/opencv_python-*
285+
286+
# release_opencv_contrib_python:
287+
# if: startsWith(github.ref, 'refs/tags/v')
288+
# needs: [build, build-windows-x86_64, build_sdist]
289+
# runs-on: ubuntu-latest
290+
# environment: opencv-python-release
291+
# defaults:
292+
# run:
293+
# shell: bash
294+
# steps:
295+
# - uses: actions/download-artifact@v2
296+
# with:
297+
# name: wheels
298+
# path: wheelhouse/
299+
300+
# - name: Upload wheels ${{ matrix.os }}
301+
# run: |
302+
# python -m pip install twine
303+
# python -m twine upload -u ${{ secrets.OPENCV_CONTRIB_PYTHON_USERNAME }} -p ${{ secrets.OPENCV_CONTRIB_PYTHON_PASSWORD }} --skip-existing wheelhouse/opencv_contrib_python-*
304+
305+
# release_opencv_python_headless:
306+
# if: startsWith(github.ref, 'refs/tags/v')
307+
# needs: [build, build-windows-x86_64, build_sdist]
308+
# runs-on: ubuntu-latest
309+
# environment: opencv-python-release
310+
# defaults:
311+
# run:
312+
# shell: bash
313+
# steps:
314+
# - uses: actions/download-artifact@v2
315+
# with:
316+
# name: wheels
317+
# path: wheelhouse/
318+
319+
# - name: Upload wheels ${{ matrix.os }}
320+
# run: |
321+
# python -m pip install twine
322+
# python -m twine upload -u ${{ secrets.OPENCV_PYTHON_HEADLESS_USERNAME }} -p ${{ secrets.OPENCV_PYTHON_HEADLESS_PASSWORD }} --skip-existing wheelhouse/opencv_python_headless-*
323+
324+
# release_opencv_contrib_python_headless:
325+
# if: startsWith(github.ref, 'refs/tags/v')
326+
# needs: [build, build-windows-x86_64, build_sdist]
327+
# runs-on: ubuntu-latest
328+
# environment: opencv-python-release
329+
# defaults:
330+
# run:
331+
# shell: bash
332+
# steps:
333+
# - uses: actions/download-artifact@v2
334+
# with:
335+
# name: wheels
336+
# path: wheelhouse/
337+
338+
# - name: Upload wheels ${{ matrix.os }}
339+
# run: |
340+
# python -m pip install twine
341+
# python -m twine upload -u ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_USERNAME }} -p ${{ secrets.OPENCV_CONTRIB_PYTHON_HEADLESS_PASSWORD }} --skip-existing wheelhouse/opencv_contrib_python_headless-*

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.