uraimo / run-on-arch-action

A Github Action that executes jobs/commands on non-x86 cpu architectures (ARMv6, ARMv7, aarch64, s390x, ppc64le, riscv64) via QEMU
BSD 3-Clause "New" or "Revised" License
687 stars 155 forks source link

The advanced example produces a warning #38

Closed umonaca closed 3 years ago

umonaca commented 3 years ago

The advanced example produces the following warning in the build step:

Warrning: The requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64) and no specific platform was requested.

Is it an intended behaviour?

rnayabed commented 3 years ago

Same problem. Cant get aarch64 to work at all

rnayabed commented 3 years ago

My problem was because I was trying to use sudo which apparently doesn't come with the aarch64 images

I had to just use apt and install without sudo, and also had to add the y switch because it would get stuck with a Yes/No prompt

rnayabed commented 2 years ago

@uraimo why did you close this issue?

uraimo commented 2 years ago

@rnayabed that's an expected warning with no implication for the user. In your case, as you said: "I was trying to use sudo which apparently doesn't come with the aarch64 images". Issue closed.

rnayabed commented 2 years ago

@rnayabed that's an expected warning with no implication for the user. In your case, as you said: "I was trying to use sudo which apparently doesn't come with the aarch64 images". Issue closed.

ah i see. actually my above comments were not related to the issue itself anyways.