Problem
Build embedded / aarch64 (ubuntu-latest) still fails in v1.0.2:
- aarch64 uses
ghcr.io/rust-cross/manylinux_2_28-cross:aarch64 (Debian-based) → needs apt-get update before install
- The
|| chain in before-script also causes both dnf AND yum to run on x86_64 (yum=alias for dnf on AlmaLinux 8), then apt-get is tried and fails with 'command not found'
Fix
Replace || chain with if/else: check for dnf first (manylinux x86_64 = AlmaLinux 8), fall back to apt-get update && apt-get install (rust-cross aarch64 = Debian).
Problem
Build embedded / aarch64 (ubuntu-latest)still fails in v1.0.2:ghcr.io/rust-cross/manylinux_2_28-cross:aarch64(Debian-based) → needsapt-get updatebefore install||chain in before-script also causes bothdnfANDyumto run on x86_64 (yum=alias for dnf on AlmaLinux 8), then apt-get is tried and fails with 'command not found'Fix
Replace
||chain withif/else: check fordnffirst (manylinux x86_64 = AlmaLinux 8), fall back toapt-get update && apt-get install(rust-cross aarch64 = Debian).