feat(dev-machine): add lychee v0.24.2 link checker - #7
Merged
Conversation
- Add LYCHEE_VERSION=v0.24.2 to pinned versions block - Add PHASE 34 installer (GitHub release, amd64 binary) - Renumber final cleanup to PHASE 35 - Update welcome banner: add lychee under NETWORKING section - Update README.md: add lychee row to What's Inside table and bump phase count
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
The release tag is lychee-v0.24.2 but the tarball asset name does NOT repeat the version string. Correct URL: lychee-x86_64-unknown-linux-gnu.tar.gz not: lychee-v0.24.2-x86_64-unknown-linux-gnu.tar.gz Fixes 404 curl error in CI build.
The lychee tarball does not contain a file named exactly 'lychee' at the archive root, causing 'tar: lychee: Not found in archive'. Fix: extract all contents to a temp dir, then find and move the binary to /usr/local/bin/lychee regardless of its in-archive name.
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.
Summary
Adds lychee — a fast, async link checker written in Rust — to the dev-machine toolchain.
Release:
lychee-v0.24.2Changes
scripts/install-tools.shLYCHEE_VERSION="v0.24.2"to the pinned versions blocklychee-v0.24.2-x86_64-unknown-linux-gnu.tar.gztarball from the GitHub release, extracts the binary to/usr/local/bin/lychee, and verifies withlychee --version34 phases→35 phaseswelcomelycheeto theNETWORKINGrow in the pre-installed tools bannerREADME.mdlycheerow to the What's Inside table (v0.24.2/ GitHub release)install-tools.shcomment from34 phases→35 phasesin the Directory Structure sectionInstall pattern
Follows the existing binary-from-tarball pattern used by
stern,gitleaks,dive, etc.:curl -fsSL "https://github.com/lycheeverse/lychee/releases/download/lychee-${LYCHEE_VERSION}/lychee-${LYCHEE_VERSION}-x86_64-unknown-linux-gnu.tar.gz" \ -o /tmp/lychee.tar.gz tar -xzf /tmp/lychee.tar.gz -C /usr/local/bin lychee chmod +x /usr/local/bin/lychee rm /tmp/lychee.tar.gz lychee --version