8000 Make linux build matrix wider - enable contrib, headless/gui, source/… · ArtificialZeng/opencv-python@60e6a36 · GitHub
[go: up one dir, main page]

Skip to content

Commit 60e6a36

Browse files
committed
Make linux build matrix wider - enable contrib, headless/gui, source/binary distribution
1 parent 940e5b1 commit 60e6a36

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build_wheels.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
os: [ubuntu-latest] #, macos-latest]
2626
python-version: [3.6, 3.7, 3.8, 3.9]
2727
platform: [x64]
28+
build_sdist: [0, 1]
29+
with_contrib: [0, 1]
30+
without_gui: [0, 1]
2831

2932
env:
3033
REPO_DIR: .
@@ -40,7 +43,9 @@ jobs:
4043
DOCKER_IMAGE: quay.io/skvark/manylinux2014_${PLAT}
4144
USE_CCACHE: 1
4245
UNICODE_WIDTH: 32
43-
SDIST: 0
46+
SDIST: ${{ matrix.build_sdist }}
47+
ENABLE_HEADLESS: ${{ matrix.without_gui }}
48+
ENABLE_CONTRIB: ${{ matrix.with_contrib }}
4449

4550
steps:
4651
- name: Checkout

0 commit comments

Comments
 (0)
0