Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: false
fetch-depth: 0
Expand All @@ -69,7 +69,7 @@ jobs:
python${{ matrix.python-version }} setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=wheelhouse -v
delocate-wheel ${{ github.workspace }}/wheelhouse/opencv*
- name: Saving a wheel accordingly to matrix
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/opencv*.whl
Expand Down Expand Up @@ -100,12 +100,12 @@ jobs:
run: find . -mindepth 1 -delete
working-directory: ${{ github.workspace }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
- name: Download a wheel accordingly to matrix
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: wheels
path: wheelhouse/
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload all wheels
Expand All @@ -189,7 +189,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload wheels for opencv_python
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels_macos_m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: false
fetch-depth: 0
Expand All @@ -57,7 +57,7 @@ jobs:
python${{ matrix.python-version }} setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=wheelhouse -v
delocate-wheel ${{ github.workspace }}/wheelhouse/opencv*
- name: Saving a wheel accordingly to matrix
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/opencv*.whl
Expand All @@ -82,12 +82,12 @@ jobs:
run: find . -mindepth 1 -delete
working-directory: ${{ github.workspace }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
- name: Download a wheel accordingly to matrix
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: wheels
path: wheelhouse/
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload all wheels
Expand All @@ -171,7 +171,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload wheels for opencv_python
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build_wheels_manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ jobs:
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: false
fetch-depth: 0

- name: Build a package
run: source scripts/build.sh
- name: Saving a wheel accordingly to matrix
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.platform }}-${{ matrix.manylinux }}-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/opencv*.whl
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: find . -mindepth 1 -delete
working-directory: ${{ github.workspace }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
Expand All @@ -134,7 +134,7 @@ jobs:
echo "TEST_DEPENDS=$(echo $NP_TEST_DEP_LATEST)" >> $GITHUB_ENV
fi
- name: Download a wheel accordingly to matrix
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: wheel-${{ matrix.platform }}-${{ matrix.manylinux }}-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: wheelhouse/
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
submodules: false
fetch-depth: 0
Expand All @@ -203,7 +203,7 @@ jobs:
set -x
echo "skipping tests because of sdist"
- name: saving artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
path: dist/opencv*.tar.gz
Expand All @@ -217,7 +217,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/

Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/

Expand All @@ -266,7 +266,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload wheels for opencv_python
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: false
fetch-depth: 0
Expand All @@ -70,7 +70,7 @@ jobs:
set "CI_BUILD=1" && python setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=%cd%\wheelhouse -v
shell: cmd
- name: Saving all wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
path: wheelhouse/opencv*
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
rm -rf ./.??* || true
working-directory: ${{ github.workspace }}
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
Expand All @@ -112,7 +112,7 @@ jobs:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.platform }}
- name: Download a wheel accordingly to matrix
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
path: wheelhouse/
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload wheels for opencv_python_rolling
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload all wheels
Expand All @@ -188,7 +188,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: wheelhouse/
- name: Upload wheels for opencv_python
Expand Down
Loading