Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/latest-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
include:
- target: aarch64-apple-darwin
runner_os: macos-latest
- target: aarch64-unknown-linux-gnu
runner_os: ubuntu-latest
- target: aarch64-unknown-linux-musl
runner_os: ubuntu-latest
Comment on lines +39 to +41
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the new aarch64 Linux targets, this workflow uses runs-on: ubuntu-latest, which is likely an x86_64 runner. That means the aarch64 builds/tests will rely on cross-compilation/emulation rather than running natively on ARM64, which can be slower and may miss ARM-runner-specific issues. If the intent is to validate on real ARM64 runners (as in test.yaml), consider switching these entries to an ARM runner label (e.g., ubuntu-24.04-arm / ubuntu-22.04-arm, or the repo’s preferred ARM runner) and keeping the “latest” semantics via the newest ARM image you support.

Suggested change
runner_os: ubuntu-latest
- target: aarch64-unknown-linux-musl
runner_os: ubuntu-latest
runner_os: ubuntu-24.04-arm
- target: aarch64-unknown-linux-musl
runner_os: ubuntu-24.04-arm

Copilot uses AI. Check for mistakes.
- target: aarch64-pc-windows-msvc
# There is no windows-latest-arm runner.
runner_os: windows-11-arm
- target: armv7-unknown-linux-gnueabihf
runner_os: ubuntu-latest
- target: x86_64-apple-darwin
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,19 @@ jobs:
- target: aarch64-apple-darwin
runner_os: macos-26

- target: aarch64-unknown-linux-gnu
runner_os: ubuntu-22.04-arm
- target: aarch64-unknown-linux-gnu
runner_os: ubuntu-24.04-arm

- target: aarch64-unknown-linux-musl
runner_os: ubuntu-22.04-arm
- target: aarch64-unknown-linux-musl
runner_os: ubuntu-24.04-arm

- target: aarch64-pc-windows-msvc
runner_os: windows-11-arm

- target: armv7-unknown-linux-gnueabihf
runner_os: ubuntu-22.04
- target: armv7-unknown-linux-gnueabihf
Expand Down
Loading