Skip to content

Commit ed91aae

Browse files
committed
Move all workflow lines to CI repo
1 parent 3725898 commit ed91aae

7 files changed

+90
-1091
lines changed

.github/workflows/build_packages.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build Packages
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- 3.4
8+
- 4.x
9+
- 5.x
10+
release:
11+
types: [published, edited]
12+
13+
14+
jobs:
15+
Linux-ARM64:
16+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Linux-ARM64.yaml@main
17+
secrets: inherit
18+
19+
Linux-x86_64:
20+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Linux-x86-64.yaml@main
21+
secrets: inherit
22+
23+
macOS-ARM64:
24+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-macOS-ARM64.yaml@main
25+
secrets: inherit
26+
27+
macOS-x86_64:
28+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-macOS-x86-64.yaml@main
29+
secrets: inherit
30+
31+
Windows:
32+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Windows-10.yaml@main
33+
secrets: inherit
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Build Rolling Packages
2+
3+
on:
4+
workflow_dispatch:
5+
workflow_call:
6+
7+
8+
jobs:
9+
Linux-ARM64:
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
MATRIX_BRANCH: [4.x]
14+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Linux-ARM64.yaml@main
15+
secrets: inherit
16+
with:
17+
MATRIX_BRANCH: ${{ matrix.MATRIX_BRANCH }}
18+
19+
Linux-x86_64:
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
MATRIX_BRANCH: [4.x]
24+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Linux-x86-64.yaml@main
25+
secrets: inherit
26+
with:
27+
MATRIX_BRANCH: ${{ matrix.MATRIX_BRANCH }}
28+
29+
macOS-ARM64:
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
MATRIX_BRANCH: [4.x]
34+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-macOS-ARM64.yaml@main
35+
secrets: inherit
36+
with:
37+
MATRIX_BRANCH: ${{ matrix.MATRIX_BRANCH }}
38+
39+
macOS-x86_64:
40+
strategy:
41+
fail-fast: false
42+
matrix:
43+
MATRIX_BRANCH: [4.x]
44+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-macOS-x86-64.yaml@main
45+
secrets: inherit
46+
with:
47+
MATRIX_BRANCH: ${{ matrix.MATRIX_BRANCH }}
48+
49+
Windows:
50+
strategy:
51+
fail-fast: false
52+
matrix:
53+
MATRIX_BRANCH: [4.x]
54+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Python-Windows-10.yaml@main
55+
secrets: inherit
56+
with:
57+
MATRIX_BRANCH: ${{ matrix.MATRIX_BRANCH }}

.github/workflows/build_wheels_linux.yml

-261
This file was deleted.

0 commit comments

Comments
 (0)