Draft
Keep local microscaler-observability as a path dep; rewrite to git only in GitHub Actions#369
microscaler-observability as a path dep; rewrite to git only in GitHub Actions#369Conversation
…-test and tilt-ci jobs
Copilot created this pull request from a session on behalf of
casibbald
June 25, 2026 06:21
View session
Copilot
AI
changed the title
fix(ci): checkout microscaler-observability sibling repo before Rust builds
fix(deps): replace microscaler-observability path dep with git URL
Jun 25, 2026
Copilot
AI
changed the title
fix(deps): replace microscaler-observability path dep with git URL
Keep local Jun 25, 2026
microscaler-observability as a path dep; rewrite to git only in GitHub Actions
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.
Local development expects
microscaler-observabilityto come from the sibling checkout at../microscaler-observability, but the previous change converted it to a git dependency globally. This change restores the local path dependency and moves the git switch into GitHub Actions so CI can rewrite the manifest at runtime.Dependency resolution
microscaler-observabilityinCargo.tomlto the local sibling path:Cargo.lockto match the path-based local-dev state.GitHub Actions runtime rewrite
ci.ymlto rewrite the dependency before any Cargo commands run.docs.ymlso doc builds do not depend on the sibling checkout existing on runners.CI-only switch behavior
Cargo.tomlin-place to use the hosted repo:sed -i 's|microscaler-observability = { path = "../microscaler-observability" }|microscaler-observability = { git = "https://github.com/microscaler/microscaler-observability.git", branch = "main" }|' Cargo.tomlRepo docs
llmwiki/log.mdnote documenting the local-vs-CI dependency policy for this repo.