fix(ci): replace setup-qemu-action with direct binfmt install #25
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/ci-qemu-no-toolcache"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Forgejo runner has no writable $RUNNER_TOOL_CACHE (default /opt/hostedtoolcache), so setup-qemu-action@v3's image-cache step crashed with
EACCES: permission denied, mkdir '/opt/hostedtoolcache'even though the actual QEMU registration succeeded. Replace the action with a directdocker run --privileged --rm tonistiigi/binfmt:latest --install amd64,arm64- this is what the action wraps anyway, minus the broken tool-cache write.Signed-off-by: nrupard natrsmith11@gmail.com