fix(ci): bump cloudflare-tools to fix install-time build race#911
Closed
sam-goodwin wants to merge 1 commit into
Closed
fix(ci): bump cloudflare-tools to fix install-time build race#911sam-goodwin wants to merge 1 commit into
sam-goodwin wants to merge 1 commit into
Conversation
cloudflare-runtime's tsdown config imports the rolldown-plugin's dist, but bun run --filter does not order devDependencies, so bun install's prepare step could build the runtime before the plugin (intermittent website.yml failure). cloudflare-tools now builds the plugin first in the runtime's build script. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
|
Install the packages built from this commit: alchemy bun add alchemy@https://pkg.ing/alchemy/0b85fde@alchemy.run/better-auth bun add @alchemy.run/better-auth@https://pkg.ing/@alchemy.run/better-auth/0b85fde@alchemy.run/pr-package bun add @alchemy.run/pr-package@https://pkg.ing/@alchemy.run/pr-package/0b85fde |
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.
Bump the cloudflare-tools submodule to pick up alchemy-run/cloudflare-tools#78, fixing the intermittent "Install dependencies" failure in website.yml (e.g. run 29860893544):
Root cause:
preparerunsbun run --filter './cloudflare-tools/packages/*' build, and bun's--filterorders workspace scripts bydependenciesbut notdevDependencies. The rolldown-plugin is only a devDependency of cloudflare-runtime, so the runtime's tsdown config could load before the plugin'sdistexisted. The runtime's build script now builds the plugin first (an incremental no-op under turbo).🤖 Generated with Claude Code