• fix(ci): pin deb builds to ubuntu-22.04 and enforce the fleet glibc floor (#41)
    Build Debian Packages / Build .deb for x86_64-unknown-linux-gnu (push) Has been cancelled
    Build Debian Packages / Build .deb for aarch64-unknown-linux-gnu (push) Has been cancelled
    Build Debian Packages / Build .deb for armv7-unknown-linux-gnueabihf (push) Has been cancelled
    Build Debian Packages / Build .deb for riscv64gc-unknown-linux-gnu (push) Has been cancelled
    CI / build (ubuntu-latest) (push) Has been cancelled
    CI / build (windows-latest) (push) Has been cancelled
    Build Debian Packages / Combine all .deb packages (push) Has been cancelled
    Build Debian Packages / Publish to APT Repository (push) Has been cancelled
    Build Debian Packages / Create GitHub Release (push) Has been cancelled

    jason released this 2026-08-23 16:42:39 +00:00 | 10 commits to master since this release

    • fix(ci): pin deb builds to ubuntu-22.04 and enforce the fleet glibc floor

    The v1.60.0 debs failed to install on Raspberry Pi OS bookworm:

    socktop : Depends: libc6 (>= 2.39) but 2.36-9+rpt2+deb12u14 is to be installed

    Cross-compiled binaries link against the RUNNER's (multiarch) glibc, so
    the runner picks the minimum glibc the packages demand. ubuntu-latest
    migrated from 22.04 (glibc 2.35) to 24.04 (glibc 2.39) between the
    1.50.x releases and now, silently raising the requirement past the
    Debian-12 fleet.

    Pin the build job to ubuntu-22.04 (2.35 — satisfied by bookworm's 2.36)
    and add a post-build gate that reads each .deb's computed libc6
    requirement and fails the run if it exceeds the fleet floor, so the next
    runner migration turns into a red build instead of a fleet-wide apt
    error.

    Co-Authored-By: Claude Fable 5 noreply@anthropic.com

    • fix(ci): extract the libc6 version, not the 6 in 'libc6'

    The floor gate's second grep matched the trailing digit of the package
    name before the version ('libc6 (>= 2.34)' -> '6'), failing every
    target. sed capture group instead; verified against realistic Depends
    strings.

    Co-Authored-By: Claude Fable 5 noreply@anthropic.com

    • chore: bump all crates to 1.60.1

    The 1.60.0 debs were built against glibc 2.39 and never installed on the
    bookworm fleet; rather than force-moving the tag, the rebuilt release
    ships as 1.60.1. Nothing was published to crates.io at 1.60.0.

    Co-Authored-By: Claude Fable 5 noreply@anthropic.com


    Co-authored-by: Claude Fable 5 noreply@anthropic.com

    Downloads