-
Notifications
You must be signed in to change notification settings - Fork 971
Test manylinux_2_28 #1152
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
base: 4.x
Are you sure you want to change the base?
Test manylinux_2_28 #1152
Conversation
| TRAVIS_BUILD_DIR: ${{ github.workspace }} | ||
| CONFIG_PATH: travis_config.sh | ||
| DOCKER_IMAGE: quay.io/opencv-ci/opencv-python-manylinux2014-x86-64:20250630 | ||
| DOCKER_IMAGE: ${{ matrix.manylinux == '2014' && (matrix.platform == 'x86_64' && 'quay.io/opencv-ci/opencv-python-manylinux2014-x86-64:20250630') || '' || (matrix.platform == 'x86_64' && 'quay.io/opencv-ci/opencv-python-manylinux_2_28-x86-64:20251013') || 'quay.io/opencv-ci/opencv-python-manylinux_2_28-aarch64:20251013' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some logic mistake.
New manylinux_2_28 based invironment (opencv#1148)
| exclude: | ||
| - platform: aarch64 | ||
| manylinux: 2014 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it excluded?
| NP_TEST_DEP_LATEST: numpy==2.2.6 | ||
| CONFIG_PATH: travis_config.sh | ||
| PLAT: x86_64 | ||
| PLAT: ${{ matrix.platform == 'x86_64' && 'x86_64' || 'aarch64' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m.b. just PLAT: ${{ matrix.platform }}?
| USE_CCACHE: 0 | ||
| UNICODE_WIDTH: 32 | ||
| PLAT: x86_64 | ||
| PLAT: ${{ matrix.platform == 'x86_64' && 'x86_64' || 'aarch64' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m.b. just PLAT: ${{ matrix.platform }}?
No description provided.