ci: stop apt hangs and stop pull requests filling the cache - #90
Open
EnriqueParodi wants to merge 1 commit into
Open
ci: stop apt hangs and stop pull requests filling the cache#90EnriqueParodi wants to merge 1 commit into
EnriqueParodi wants to merge 1 commit into
Conversation
EnriqueParodi
force-pushed
the
ci/apt-lock-timeout
branch
10 times, most recently
from
August 19, 2026 21:21
c873e14 to
b723105
Compare
apt sat on a dead mirror until the job timeout twice in one day. The mirror is pinned to one that answers, and retries, lock waits and each call are bounded.
EnriqueParodi
changed the base branch from
main
to
fix/pybind11-python-discovery
August 20, 2026 11:23
EnriqueParodi
force-pushed
the
fix/pybind11-python-discovery
branch
from
August 20, 2026 11:26
813b575 to
6f6ca05
Compare
EnriqueParodi
force-pushed
the
ci/apt-lock-timeout
branch
from
August 20, 2026 11:26
b723105 to
2420326
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two things that read as build failures and are not.
An apt call that does not bound how long it waits for the dpkg lock blocks with
no output until the job timeout kills it, which is what ended a documentation
build on #86 after its full hour. Every call now bounds the wait.
The compiler cache stores a new entry on every run, and no other pull request
can read it, so six open ones filled the 10 GB the repository gets. What that
evicted was the conan package caches, which are the expensive ones to rebuild.
Only main writes the compiler cache now; pull requests read what it leaves.