Compare commits
base: jason/socktop:fix/deb-glibc-floor
jason/socktop:master
jason/socktop:gh-pages
jason/socktop:fix/deb-glibc-floor
jason/socktop:feature/argon-sway-os-fixes
jason/socktop:housekeeping-p2
jason/socktop:feat/responsive-text
jason/socktop:feat/compact-mode
jason/socktop:fix/demo-agent-missing-message
jason/socktop:fix/dependabot-aws-lc-sys
jason/socktop:feature/debian-packaging
jason/socktop:feat/ratatui-0.30
jason/socktop:feature/man-pages
jason/socktop:feature/about-modal
jason/socktop:disk-section-cleanup
jason/socktop:feature/process-details
jason/socktop:feature/connection-error-modal
jason/socktop:feature/extract-socktop-connector
jason/socktop:6-accessibility-cross-compile-guide
jason/socktop:feature/housekeeping
jason/socktop:feature/connection-profiles
jason/socktop:feature/protobuf-processes
jason/socktop:feature/wss-selfsigned
..
compare: jason/socktop:v1.60.1
jason/socktop:master
jason/socktop:gh-pages
jason/socktop:fix/deb-glibc-floor
jason/socktop:feature/argon-sway-os-fixes
jason/socktop:housekeeping-p2
jason/socktop:feat/responsive-text
jason/socktop:feat/compact-mode
jason/socktop:fix/demo-agent-missing-message
jason/socktop:fix/dependabot-aws-lc-sys
jason/socktop:feature/debian-packaging
jason/socktop:feat/ratatui-0.30
jason/socktop:feature/man-pages
jason/socktop:feature/about-modal
jason/socktop:disk-section-cleanup
jason/socktop:feature/process-details
jason/socktop:feature/connection-error-modal
jason/socktop:feature/extract-socktop-connector
jason/socktop:6-accessibility-cross-compile-guide
jason/socktop:feature/housekeeping
jason/socktop:feature/connection-profiles
jason/socktop:feature/protobuf-processes
jason/socktop:feature/wss-selfsigned
1 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
fe3ef7f25e |
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
* 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> |