Test GNU/Linux ARM builds on the new ARM CI runner #1777
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
While ARM64 runners for macOS have been available, and not limited to enterprise or paid customers, for a while now, free Linux ARM runners for public projects were not likewise available. They are now available in public preview, as of a couple days ago. This PR extends and modifies
cy.yml
to makes use of them, by:ubuntu-24.04-arm
job totest-fast
.test-32bit
a matrix job definition, and adding a 32-bit ARMv7 job to it. The 32-bit x86 job uses a container on an x86-64 runner, just as before, while the new 32-bit ARM job uses a container on an ARM64 runner. (Although GitHub Actions supports 32-bit ARM runners in the sense that the runner software can run on such a system, there are no GitHub-hosted 32-bit ARM runners..)test-32bit-cross
job, which was not able to run many tests; it was only testinggix-hashtable
. Its value seems less now thattest-32bit
covers ARMv7. However, it may be worth reviewing the specific target, in case it is a goal to continue running some tests with aandroideabi
target. (If so, it should be possible to add that as a target to a non-cross 64-bit or 32-bit environment.)