-
Notifications
You must be signed in to change notification settings - Fork 31
Support provenance #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Support provenance #175
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [build] | ||
| rustflags = [ | ||
| "-Clink-arg=-fuse-ld=lld", | ||
| "-Crelocation-model=static", | ||
| ] | ||
|
|
||
| [target.aarch64-unknown-linux-musl] | ||
| rustflags = [ | ||
| "-Clink-arg=-fuse-ld=lld", | ||
| "-Crelocation-model=static", | ||
| "-Clink-arg=-lgcc", | ||
| ] | ||
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
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 163
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 339
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 248
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 111
🏁 Script executed:
# Check the main Cargo.toml cat ./Cargo.tomlRepository: DeterminateSystems/magic-nix-cache
Length of output: 265
🏁 Script executed:
# Check the build.yaml workflow to see what targets are built cat ./.github/workflows/build.yamlRepository: DeterminateSystems/magic-nix-cache
Length of output: 1804
🏁 Script executed:
# Check the .cargo/config.toml file itself cat ./.cargo/config.tomlRepository: DeterminateSystems/magic-nix-cache
Length of output: 296
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 5714
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 200
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 248
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 248
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 2784
🏁 Script executed:
# Read the flake.nix to understand the build targets cat ./flake.nixRepository: DeterminateSystems/magic-nix-cache
Length of output: 4422
🏁 Script executed:
# Check for any other CI workflows that mention targets cat ./.github/workflows/release-tags.ymlRepository: DeterminateSystems/magic-nix-cache
Length of output: 2196
🏁 Script executed:
# Check if the current config actually breaks anything by looking at any build issues or comments in history git log --oneline --all -20 -- .cargo/config.tomlRepository: DeterminateSystems/magic-nix-cache
Length of output: 178
🏁 Script executed:
Repository: DeterminateSystems/magic-nix-cache
Length of output: 2498
Scope and clarify static build rustflags to their target(s).
The global
[build]rustflags apply to all targets (aarch64-darwin, x86_64-linux, aarch64-linux), while the flags are intended only for static/musl builds. Additionally, the[target.aarch64-unknown-linux-musl]section references a target not in the project's supported systems; the actual target isaarch64-unknown-linux-gnu.Move the
-fuse-ld=lldand-Crelocation-model=staticflags to[target.x86_64-unknown-linux-musl]and[target.aarch64-unknown-linux-musl]instead of the global[build]section to clarify intent and avoid issues if targets expand in the future.🔧 Suggested scoping
🤖 Prompt for AI Agents