Use explicit --manifest-path for pixi jobs instead of unsetting PIXI_PROJECT_MANIFEST#405
Closed
mkitti wants to merge 1 commit into
Closed
Use explicit --manifest-path for pixi jobs instead of unsetting PIXI_PROJECT_MANIFEST#405mkitti wants to merge 1 commit into
mkitti wants to merge 1 commit into
Conversation
84d3e5c to
d74c038
Compare
…PROJECT_MANIFEST pixi's --manifest-path flag always overrides the PIXI_PROJECT_MANIFEST env var, so pointing pixi run at the manifest directory explicitly is more robust than unsetting the env var and relying on cwd-based discovery. Introduces FG_MANIFEST_DIR, exported alongside FG_WORK_DIR for all job types. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
d74c038 to
2df4465
Compare
1 task
Contributor
Author
|
Superseded by #406, which uses a branch within this repository instead of my fork so the branch could be pushed directly here. |
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
--manifest-pathflag always overrides thePIXI_PROJECT_MANIFESTenv var (verified against pixi 0.70.2), so this switches the generated pixi command topixi run --manifest-path "$FG_MANIFEST_DIR" <task>instead of unsettingPIXI_PROJECT_MANIFESTand relying on cwd-based manifest discovery.FG_MANIFEST_DIR, exported alongsideFG_WORK_DIRin every generated job script (all app types, not just pixi), pointing at the directory containing the app's manifest.docs/AuthoringApps.mdto document the new env var and command format.Test plan
pixi run -e test test-backend— all 317 tests passexport FG_MANIFEST_DIR=...andpixi run --manifest-path "$FG_MANIFEST_DIR" <task>, with nounset PIXI_PROJECT_MANIFESTline🤖 Generated with Claude Code