-
Notifications
You must be signed in to change notification settings - Fork 0
Close Gate 1 deterministic crash-resume rung #2
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
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6b22d10
docs: settled decision #14 — immutable content-addressed bundles; SUR…
khaliqgant 03f9ce3
test: close deterministic crash-resume rung
khaliqgant 09a0b97
fix(drive): adversary cli grok -> claude — grok is not a registered C…
khaliqgant 725973c
fix(vendor): restore cc src/target/ sources swallowed by target/ giti…
khaliqgant 5cc88ca
ops: drive-log — 2026-08-27 tick (WP-1, PR #2, verify re-run green)
khaliqgant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 @@ | ||
| kernel/vendor/** -whitespace |
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 |
|---|---|---|
| @@ -1,8 +1,12 @@ | ||
| node_modules/ | ||
| target/ | ||
| # vendored crate sources are immutable inputs to the build; nothing under | ||
| # kernel/vendor may be swallowed by the target/ rule (cc ships src/target/) | ||
| !kernel/vendor/** | ||
| dist/ | ||
| *.log | ||
| .DS_Store | ||
| .agent-relay/ | ||
| .env | ||
| .agentworkforce/ | ||
| .cargo-home/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| [source.crates-io] | ||
| replace-with = "vendored-sources" | ||
|
|
||
| [source.vendored-sources] | ||
| directory = "vendor" | ||
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,15 @@ | ||
| # Relayflow kernel | ||
|
|
||
| Run the kernel gate from this directory with plain Cargo commands: | ||
|
|
||
| ```sh | ||
| cargo test --workspace | ||
| cargo clippy --workspace -- -D warnings | ||
| cargo fmt --check | ||
| ``` | ||
|
|
||
| `.cargo/config.toml` redirects the locked crates.io dependencies to the | ||
| repo-local `vendor/` source. This keeps clean-checkout builds deterministic and | ||
| avoids reliance on the machine's `CARGO_HOME`; update the source alongside | ||
| `Cargo.lock` with | ||
| `CARGO_HOME="$(pwd)/.cargo-home" cargo vendor --locked vendor`. |
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
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
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.
On a clean checkout, this source replacement makes every kernel Cargo command fail before compilation:
cargo test --workspacereports that it cannot calculate theccchecksum becausekernel/vendor/cc/src/target/llvm.rsis missing. The vendored checksum also referencesapple.rs,generated.rs, andparser.rs, but the repository-widetarget/ignore rule excluded all four; force-add or explicitly unignore these files before directing Cargo exclusively tovendor, otherwise the required crash-injection gate cannot run.AGENTS.md reference: AGENTS.md:L19-L21
Useful? React with 👍 / 👎.