8000 Gs/fix submodules checkout by sergregory · Pull Request #6 · sergregory/opencv-python · GitHub
[go: up one dir, main page]

Skip to content

Gs/fix submodules checkout #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
8000
Prev Previous commit
Next Next commit
Fixed submodules
  • Loading branch information
Andrey Senyaev committed May 24, 2021
commit d58df653183f7145f74b42603ac3482479beb898
20 changes: 15 additions & 5 deletions .github/workflows/build_wheels_linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build PYPI wheels for opencv-python on Linux x86_64
name: Build PYPI wheels fgithub.event_name == 'release'or opencv-python on Linux x86_64

on:
push:
branches:
- asen/check_3.4_wo_submodules
pull_request:
branches:
- 3.4
Expand Down Expand Up @@ -47,12 +50,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: false
fetch-depth: 0

- name: Update multibuild submodule
run: git submodule update --init --recursive multibuild

- name: Update submodules
run: |
git submodule update --remote
if: github.event_name == 'pull_request'
run: git submodule update --remote

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down Expand Up @@ -137,10 +143,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: false
fetch-depth: 0

- name: Update multibuild submodule
run: git submodule update --init --recursive multibuild

- name: Update submodules
if: github.event_name == 'pull_request'
run: |
git submodule update --remote

Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/build_wheels_linux_arm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build PYPI wheels for opencv-python on Linux ARM

on:
push:
branches:
- asen/check_3.4_wo_submodules
pull_request:
branches:
- 3.4
Expand Down Expa 8000 nd Up @@ -53,9 +56,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: false
fetch-depth: 0

- name: Update multibuild submodule
run: git submodule update --init --recursive multibuild

- name: Update submodules
if: github.event_name == 'pull_request'
run: git submodule update --remote

- name: Setup Environment variables
run: |
if [ "ARM64" == "${{ matrix.os }}" ]; then echo "PLAT=aarch64" >> $GITHUB_ENV; fi
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/build_wheels_macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build PYPI wheels for opencv-python on Macos

on:
push:
branches:
- asen/check_3.4_wo_submodules
pull_request:
branches:
- 3.4
Expand Down Expand Up @@ -47,12 +50,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: false
fetch-depth: 0

- name: Update multibuild submodule
run: git submodule update --init --recursive multibuild

- name: Update submodules
run: |
git submodule update --remote
if: github.event_name == 'pull_request'
run: git submodule update --remote

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/build_wheels_windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build PYPI wheels for opencv-python on Windows

on:
push:
branches:
- asen/check_3.4_wo_submodules
pull_request:
branches:
- 3.4
Expand Down Expand Up @@ -35,12 +38,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: false
fetch-depth: 0

- name: Update multibuild submodule
run: git submodule update --init --recursive multibuild

- name: Update submodules
run: |
git submodule update --remote
if: github.event_name == 'pull_request'
run: git submodule update --remote

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
0