ci: GOPRIVATE for the codefly install step — unblocks all three open PRs - #16
Merged
Merged
Conversation
…-party tags All three open PRs fail 'Install Codefly' identically: sum.golang.org lookup for cli@v0.1.34 returns 500. First-party codefly-dev modules must not verify against the public checksum DB; Mind's CI already sets GOPRIVATE for the same reason. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Every open PR (#7, #11, #15) fails the same way:
go install github.com/codefly-dev/cli/cmd/codefly@latest→sum.golang.org … cli@v0.1.34: 500 Internal Server Error.First-party
codefly-dev/*modules should never verify against the public checksum DB — fresh tags aren't indexed and private repos never will be. Mind's CI sets exactly this inscripts/ci-fetch-codefly.sh:72.One env line on the install step. After this merges, rebase or re-run the three PRs and their
Codefly CIcheck can actually evaluate them.Note: this is NOT the banned checksum-bypass class from mind#167 — that rule protects against papering over mismatches on public third-party modules;
GOPRIVATEfor first-party org modules is the standard, correct mechanism.🤖 Generated with Claude Code