Skip to content

Commit ec4de44

Browse files
authored
Update build_wheels_linux.yml
1 parent e5ae686 commit ec4de44

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

.github/workflows/build_wheels_linux.yml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,14 @@ jobs:
2424
shell: bash
2525
strategy:
2626
fail-fast: false
27-
matrix:
28-
platform_matrix:
29-
include:
30-
- platform: x64
31-
manylinux: 2014
32-
docker-image: quay.io/opencv-ci/opencv-python-manylinux2014-x86-64:20250630
33-
- platform: x64
34-
manylinux: 2_28
35-
docker-image: quay.io/opencv-ci/opencv-python-manylinux_2_28-x86-64:20251013
36-
- platform: aarch64
37-
manylinux: 2_28
38-
docker-image: quay.io/opencv-ci/opencv-python-manylinux_2_28-aarch64:20251013
39-
python-version: ['3.9']
40-
with_contrib: [0, 1]
41-
without_gui: [0, 1]
42-
build_sdist: [0]
27+
matrix:
28+
python-version: ['3.9']
29+
platform: [x64, aarch64]
30+
manylinux: [2014, 2_28]
31+
with_contrib: [0, 1]
32+
without_gui: [0, 1]
33+
build_sdist: [0]
34+
4335
env:
4436
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
4537
REPO_DIR: .
@@ -49,7 +41,7 @@ jobs:
4941
MB_ML_VER: ${{ matrix.manylinux }}
5042
TRAVIS_BUILD_DIR: ${{ github.workspace }}
5143
CONFIG_PATH: travis_config.sh
52-
DOCKER_IMAGE: ${{ matrix.docker-image }}
44+
DOCKER_IMAGE: ${{ matrix.manylinux == '2014' && (matrix.platform == 'x64' && 'quay.io/opencv-ci/opencv-python-manylinux2014-x86-64:20250630') || '' || (matrix.platform == 'x64' && 'quay.io/opencv-ci/opencv-python-manylinux_2_28-x86-64:20251013') || 'quay.io/opencv-ci/opencv-python-manylinux_2_28-aarch64:20251013' }}
5345
USE_CCACHE: 0
5446
UNICODE_WIDTH: 32
5547
PLAT: ${{ matrix.platform == 'x64' && 'x86_64' || 'aarch64' }}

0 commit comments

Comments
 (0)