Skip to content

Commit d2040a8

Browse files
committed
Run rolling updates on a trigger
1 parent 8a47bfa commit d2040a8

5 files changed

+200
-67
lines changed

.github/workflows/build_wheels_linux.yml

+51-18
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ on:
1313
- '.github/workflows/build_wheels_macos*'
1414
release:
1515
types: [published, edited]
16-
schedule:
17-
- cron: '0 3 * * 6'
1816
workflow_dispatch:
17+
workflow_call:
18+
inputs:
19+
MATRIX_BRANCH:
20+
required: true
21+
type: string
1922

2023

2124
jobs:
@@ -57,11 +60,20 @@ jobs:
5760
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
5861
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
5962
fi
60-
- name: Checkout
61-
uses: actions/checkout@v3
62-
with:
63-
submodules: false
64-
fetch-depth: 0
63+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
64+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
65+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
66+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
67+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
68+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
69+
else
70+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
71+
fi
72+
- name: Clone
73+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
74+
- name: Merge with a test branch
75+
if: ${{ github.event_name == 'pull_request' }}
76+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
6577
- name: Build a package
6678
run: source scripts/build.sh
6779
- name: Saving all wheels
@@ -100,13 +112,25 @@ jobs:
100112
- name: Cleanup
101113
run: find . -mindepth 1 -delete
102114
working-directory: ${{ github.workspace }}
103-
- name: Checkout
104-
uses: actions/checkout@v3
105-
with:
106-
submodules: true
107-
fetch-depth: 0
108115
- name: Setup Environment variables
109-
run: if [ "3.10" == "${{ matrix.python-version }}" ]; then echo "TEST_DEPENDS=$(echo $NP_TEST_DEP_LATEST)" >> $GITHUB_ENV; else echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV; fi
116+
run: |
117+
if [ "3.10" == "${{ matrix.python-version }}" ]; then echo "TEST_DEPENDS=$(echo $NP_TEST_DEP_LATEST)" >> $GITHUB_ENV; else echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV; fi
118+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
119+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
120+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
121+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
122+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
123+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
124+
else
125+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
126+
fi
127+
- name: Clone
128+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
129+
- name: Merge with a test branch
130+
if: ${{ github.event_name == 'pull_request' }}
131+
run: |
132+
cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
133+
git submodule update --init --recursive
110134
- name: Download a wheel accordingly to matrix
111135
uses: actions/download-artifact@v3
112136
with:
@@ -154,11 +178,20 @@ jobs:
154178
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
155179
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
156180
fi
157-
- name: Checkout
158-
uses: actions/checkout@v3
159-
with:
160-
submodules: false
161-
fetch-depth: 0
181+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
182+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
183+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
184+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
185+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
186+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
187+
else
188+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
189+
fi
190+
- name: Clone
191+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
192+
- name: Merge with a test branch
193+
if: ${{ github.event_name == 'pull_request' }}
194+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
162195
- name: Set up Python ${{ matrix.python-version }}
163196
uses: actions/setup-python@v4
164197
with:

.github/workflows/build_wheels_linux_arm.yml

+37-13
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ on:
1313
- '.github/workflows/build_wheels_macos*'
1414
release:
1515
types: [published, edited]
16-
schedule:
17-
- cron: '0 3 * * 6'
1816
workflow_dispatch:
17+
workflow_call:
18+
inputs:
19+
MATRIX_BRANCH:
20+
required: true
21+
type: string
1922

2023

2124
jobs:
@@ -57,11 +60,20 @@ jobs:
5760
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
5861
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
5962
fi
60-
- name: Checkout
61-
uses: actions/checkout@v3
62-
with:
63-
submodules: false
64-
fetch-depth: 0
63+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
64+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
65+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
66+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
67+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
68+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
69+
else
70+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
71+
fi
72+
- name: Clone
73+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
74+
- name: Merge with a test branch
75+
if: ${{ github.event_name == 'pull_request' }}
76+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
6577
- name: Build a package
6678
run: source scripts/build.sh
6779
- name: Saving all wheels
@@ -102,13 +114,25 @@ jobs:
102114
- name: Cleanup
103115
run: find . -mindepth 1 -delete
104116
working-directory: ${{ github.workspace }}
105-
- name: Checkout
106-
uses: actions/checkout@v3
107-
with:
108-
submodules: true
109-
fetch-depth: 0
110117
- name: Setup Environment variables
111-
run: if [ "3.10" == "${{ matrix.python-version }}" ]; then echo "TEST_DEPENDS=$(echo $NP_TEST_DEP_LATEST)" >> $GITHUB_ENV; else echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV; fi
118+
run: |
119+
if [ "3.10" == "${{ matrix.python-version }}" ]; then echo "TEST_DEPENDS=$(echo $NP_TEST_DEP_LATEST)" >> $GITHUB_ENV; else echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV; fi
120+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
121+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
122+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
123+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
124+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
125+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
126+
else
127+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
128+
fi
129+
- name: Clone
130+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
131+
- name: Merge with a test branch
132+
if: ${{ github.event_name == 'pull_request' }}
133+
run: |
134+
cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
135+
git submodule update --init --recursive
112136
- name: Download a wheel accordingly to matrix
113137
uses: actions/download-artifact@v3
114138
with:

.github/workflows/build_wheels_macos.yml

+37-12
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ on:
1313
- '.github/workflows/build_wheels_macos_m1.yml'
1414
release:
1515
types: [published, edited]
16-
schedule:
17-
- cron: '0 3 * * 6'
1816
workflow_dispatch:
17+
workflow_call:
18+
inputs:
19+
MATRIX_BRANCH:
20+
required: true
21+
type: string
1922

2023

2124
jobs:
@@ -59,11 +62,20 @@ jobs:
5962
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
6063
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
6164
fi
62-
- name: Checkout
63-
uses: actions/checkout@v3
64-
with:
65-
submodules: false
66-
fetch-depth: 0
65+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
66+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
67+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
68+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
69+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
70+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
71+
else
72+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
73+
fi
74+
- name: Clone
75+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
76+
- name: Merge with a test branch
77+
if: ${{ github.event_name == 'pull_request' }}
78+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
6779
- name: Build a package
6880
run: |
6981
set -e
@@ -119,11 +131,24 @@ jobs:
119131
- name: Cleanup
120132
run: find . -mindepth 1 -delete
121133
working-directory: ${{ github.workspace }}
122-
- name: Checkout
123-
uses: actions/checkout@v3
124-
with:
125-
submodules: true
126-
fetch-depth: 0
134+
- name: Setup Environment variables
135+
run: |
136+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
137+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
138+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
139+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
140+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
141+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
142+
else
143+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
144+
fi
145+
- name: Clone
146+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
147+
- name: Merge with a test branch
148+
if: ${{ github.event_name == 'pull_request' }}
149+
run: |
150+
cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
151+
git submodule update --init --recursive
127152
- name: Set up Python ${{ matrix.python-version }}
128153
uses: actions/setup-python@v4
129154
with:

.github/workflows/build_wheels_macos_m1.yml

+37-12
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ on:
1313
- '.github/workflows/build_wheels_macos.yml'
1414
release:
1515
types: [published, edited]
16-
schedule:
17-
- cron: '0 3 * * 6'
1816
workflow_dispatch:
17+
workflow_call:
18+
inputs:
19+
MATRIX_BRANCH:
20+
required: true
21+
type: string
1922

2023

2124
jobs:
@@ -43,11 +46,20 @@ jobs:
4346
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
4447
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
4548
fi
46-
- name: Checkout
47-
uses: actions/checkout@v3
48-
with:
49-
submodules: false
50-
fetch-depth: 0
49+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
50+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
51+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
52+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
53+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
54+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
55+
else
56+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
57+
fi
58+
- name: Clone
59+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
60+
- name: Merge with a test branch
61+
if: ${{ github.event_name == 'pull_request' }}
62+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
5163
- name: Build a package
5264
run: |
5365
git submodule update --init multibuild
@@ -86,11 +98,24 @@ jobs:
8698
- name: Cleanup
8799
run: find . -mindepth 1 -delete
88100
working-directory: ${{ github.workspace }}
89-
- name: Checkout
90-
uses: actions/checkout@v3
91-
with:
92-
submodules: true
93-
fetch-depth: 0
101+
- name: Setup Environment variables
102+
run: |
103+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
104+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
105+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
106+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
107+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
108+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
109+
else
110+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
111+
fi
112+
- name: Clone
113+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
114+
- name: Merge with a test branch
115+
if: ${{ github.event_name == 'pull_request' }}
116+
run: |
117+
cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
118+
git submodule update --init --recursive
94119
- name: Download a wheel accordingly to matrix
95120
uses: actions/download-artifact@v3
96121
with:

.github/workflows/build_wheels_windows.yml

+38-12
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ on:
1212
- '.github/workflows/build_wheels_macos*'
1313
release:
1414
types: [published, edited]
15-
schedule:
16-
- cron: '0 3 * * 6'
1715
workflow_dispatch:
16+
workflow_call:
17+
inputs:
18+
MATRIX_BRANCH:
19+
required: true
20+
type: string
1821

1922

2023
jobs:
@@ -47,11 +50,20 @@ jobs:
4750
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
4851
echo "ENABLE_ROLLING=1" >> $GITHUB_ENV
4952
fi
50-
- name: Checkout
51-
uses: actions/checkout@v3
52-
with:
53-
submodules: false
54-
fetch-depth: 0
53+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
54+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
55+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
56+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
57+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
58+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
59+
else
60+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
61+
fi
62+
- name: Clone
63+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
64+
- name: Merge with a test branch
65+
if: ${{ github.event_name == 'pull_request' }}
66+
run: cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
5567
- name: Set up Python ${{ matrix.python-version }}
5668
uses: actions/setup-python@v4
5769
with:
@@ -103,11 +115,25 @@ jobs:
103115
rm -rf ./* || true
104116
rm -rf ./.??* || true
105117
working-directory: ${{ github.workspace }}
106-
- name: Checkout
107-
uses: actions/checkout@v3
108-
with:
109-
submodules: true
110-
fetch-depth: 0
118+
- name: Setup Environment variables
119+
shell: bash
120+
run: |
121+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
122+
echo "CLONE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
123+
echo "SOURCE_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
124+
echo "PR_AUTHOR_FORK=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_ENV
125+
elif [[ "${{ github.event_name }}" == "schedule" ]]; then
126+
echo "CLONE_BRANCH=${{ inputs.MATRIX_BRANCH }}" >> $GITHUB_ENV
127+
else
128+
echo "CLONE_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
129+
fi
130+
- name: Clone
131+
run: git clone --branch ${{ env.CLONE_BRANCH }} https://github.com/opencv/opencv-python.git ${{ github.workspace }}
132+
- name: Merge with a test branch
133+
if: ${{ github.event_name == 'pull_request' }}
134+
run: |
135+
cd ${{ github.workspace }} && git pull -v "https://github.com/${{ env.PR_AUTHOR_FORK }}" "${{ env.SOURCE_BRANCH_NAME }}"
136+
git submodule update --init --recursive
111137
- name: Set up Python ${{ matrix.python-version }}
112138
uses: actions/setup-python@v4
113139
with:

0 commit comments

Comments
 (0)