-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
ci: Add an ARM Linux test workflow #29477
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
Conversation
I should probably skip some backends though; it seems PyQt5 doesnt have a wheel and is just stuck. |
.github/workflows/tests.yml
Outdated
echo 'PyQt5 is not available' | ||
# PyQt5 does not have any wheels for ARM on Linux. | ||
if [[ "${{ matrix.os }}" != 'ubuntu-20.04-arm' ]]; then | ||
python -mpip install --upgrade pyqt5${{ matrix.pyqt5-ver }} && |
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.
python -mpip install --upgrade pyqt5${{ matrix.pyqt5-ver }} && | |
python -mpip install --upgrade pyqt5${{ matrix.pyqt5-ver }} --only-binary pyqt5 && |
The latest CI job seems like it is trying to build pyqt5 from an sdist still.
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.
Ah, I messed up the condition, but I've added this as well.
Like the macOS jobs are mixed between Intel and ARM, this changes one of the Linux jobs to use ARM.
PR summary
Like the macOS jobs are mixed between Intel and ARM, this changes one of the Linux jobs to use ARM.
We'll see if we need to make any changes as in #24597 after the build is complete.
PR checklist