build.yml: runs-on debian-aarch64 (label, not runner name) #46
Reference in New Issue
Block a user
Delete Branch "fix/debian-runner-label-2026-05-20"
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?
5feab57(from PR #45) setruns-on: actrunner-debian-aarch64-bohrwhich is the bohr runner display-name, not a label. Gitea Actions matches runs-on against runner LABELS — bohrs labels aredebian-trixie,aarch64,debian-aarch64. With the wrong value, the libva-v4l2-request-fourier-debian job would sit unrouted (no runner matches).Fix:
runs-on: debian-aarch64.Sidenote: 6 other debian jobs (lmcp-debian, claude-his-debian, ffmpeg-v4l2-request-debian, mpv-fourier-debian, daedalus-v4l2-debian, daedalus-v4l2-dkms-debian) still use
runs-on: arch-aarch64— that is the open scope of #134 and not addressed here.