docs: document Chromium toolchain and shared-lib requirement#670
Closed
Freudator86 wants to merge 2 commits into
Closed
docs: document Chromium toolchain and shared-lib requirement#670Freudator86 wants to merge 2 commits into
Freudator86 wants to merge 2 commits into
Conversation
chrome-devtools-axi is useless without an actual Chromium binary capable of a headless launch - the binary alone is not enough, since on Debian/Ubuntu-family hosts a headless launch also needs shared libs like libnspr4 that are not installed by default even when a cached Playwright Chromium binary is already present. Hit for real on crew-allesknut (Ubuntu 26.04) and fixed with `npx --yes playwright install-deps chromium`.
…m bootstrap auto-detection
4 tasks
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.
Intent
Add Chromium + its OS-level shared-library dependencies as a required toolchain item in docs/configuration.md, matching the doc's existing manual-install framing
What Changed
docs/configuration.mdthatchrome-devtools-axi's headless launches require a real Chromium binary plus its OS-level shared-library dependencies (e.g.libnspr4on Debian/Ubuntu), and that bootstrap does not currently detect or report this like it does fortasks-axi/quota-axi.npx --yes playwright install-deps chromium) to install those dependencies before session start.MISSING: chromiumbootstrap line exists today, avoiding any implication that bootstrap auto-detects the Chromium toolchain.Risk Assessment
✅ Low: Documentation-only change confined to docs/configuration.md; verified against bin/fm-bootstrap.sh that the claims made (bootstrap's COMMON_TOOLS list has no chromium detection) are accurate, and the change fulfills the stated intent using the doc's existing manual-install framing with no code or behavior changes.
Testing
Completed 1 recorded test check.
Pipeline
Updates from git push no-mistakes
✅ **intent** - passed
✅ No issues found.
✅ **Rebase** - passed
✅ No issues found.
✅ **Review** - passed
✅ No issues found.
⏭️ **Test** - skipped
command -v tmux >/dev/null || { echo "tmux is required for e2e tests" >&2; exit 1; }; tmux -V; rc=0; for t in tests/*.test.sh; do echo "== $t =="; bash "$t" || rc=1; done; exit "$rc"✅ **Document** - passed
✅ No issues found.
⏭️ **Lint** - skipped
✅ **Push** - passed
✅ No issues found.