Add ARM64/aarch64 platform support with CI testing #2285
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.
Overview
This PR adds official ARM64 (aarch64) platform support for building and testing Ignite UI for jQuery, addressing issue #[issue_number] where a user successfully validated the build on ARM64 systems.
Problem
A user reported successfully building Ignite UI for jQuery on an ARM64 (aarch64) platform and requested official support. While the build worked, there was no continuous integration testing to ensure ongoing compatibility with ARM64 systems, and the documentation didn't mention ARM64 support.
Solution
1. GitHub Actions CI Workflow Updates
Modified
.github/workflows/node.js.yml
to add ARM64 testing:Changes:
ubuntu-24.04-arm
runner to test on ARM64 architectureubuntu-latest
to avoid duplicate submissionsEach workflow run will now execute:
npm ci
- Install dependenciesgrunt build
- Build the projectnpm run cover
- Run tests with coverageon both architectures, ensuring compatibility is maintained.
2. Documentation Updates
Added a new "Platform Support" section to
README.md
documenting:Benefits
Testing
The ARM64 tests will run automatically when this PR is merged, validating the build on both architectures for all future changes.
Original prompt
Fixes #2270
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.