Add x86-64 emulation support for Linux ARM test runners#2
Merged
Conversation
Co-authored-by: ronaldtse <11865+ronaldtse@users.noreply.github.com>
Co-authored-by: ronaldtse <11865+ronaldtse@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix Linux on arm tests not running properly
Add x86-64 emulation support for Linux ARM test runners
Oct 27, 2025
Contributor
|
@copilot the job already failed. Please fix. |
Contributor
Author
The workflow shows "action_required" status, which typically means the ARM runners (ubuntu-24.04-arm, ubuntu-22.04-arm) need to be enabled/approved for this repository at the organization level. Could you:
The x86-64 emulation setup I added is correct and matches the eep-releases repo approach - it just needs the ARM runners to be accessible to test it. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The Linux binary is x86-64, requiring QEMU emulation on ARM64 runners. Tests were failing on
ubuntu-24.04-armandubuntu-22.04-armdue to missing compatibility packages.Changes
.github/workflows/linux.ymlthat runs only whencontains(matrix.os, 'arm')qemu-user-staticandbinfmt-supportfor x86-64 binary executionlibc6:amd64for x86-64 library dependencieslsb_releasewith fallback to/etc/os-releaseparsingImplementation follows the proven approach in
expresslang/eep-releasesworkflow where tests pass successfully.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.