Skip to content

CI: add --features cycle-driver to the supervisor step (30 unrun falsifiers, incl. the 64k headline) - #900

Merged
AdaWorldAPI merged 2 commits into
mainfrom
claude/x265-x266-plans-review-h9osnl
Aug 5, 2026
Merged

CI: add --features cycle-driver to the supervisor step (30 unrun falsifiers, incl. the 64k headline)#900
AdaWorldAPI merged 2 commits into
mainfrom
claude/x265-x266-plans-review-h9osnl

Conversation

@AdaWorldAPI

@AdaWorldAPI AdaWorldAPI commented Aug 5, 2026

Copy link
Copy Markdown
Owner

The gap #891 recorded and #898 didn't close

cycle-driver is a separate feature that supervisor does not imply. So
the supervisor CI step — despite being this crate's own step — never compiled
cycle_driver, the three probe_ignition* / d_ign_b_lenses test binaries, or
any of #879's loop-closure contract.

Measured on this tree, not inferred:

invocation tests run
--features supervisor (today) 13
--features supervisor,cycle-driver 43, 0 failed

The 30 in the gap include probe_ignition_64k_start_at_full_population
the 65,536-owner / 17-sealed headline canonized as
E-64K-1TO1-OWNERS-IS-THE-MAIN-MODEL-1. It runs in 13.75 s and passes. It had
simply never run anywhere but a developer machine.

Why this one and not the other

#891 recorded this gap and deliberately left the workflow alone (correctly — it
was scoped elsewhere). #898 then closed the identical shape for callcenter
(--features query). Same arc, same defect class, one closed and one not.

Grepping .github/workflows/ for cycle-driver returned zero matches before
this PR.

Safety of the change

One added feature on an existing step. The new invocation is a strict
superset
of the old one, so it cannot lose coverage, and it was run locally
first — 43 passed, 0 failed — so it does not land red.

No new job, no new checkout, no extra cold compile: the step already builds this
crate.


Also in this PR: one stale lockfile line

Cargo.lock listed blake3 under ndarray's dependencies. ndarray removed it
deliberately — its manifest now says "blake3 — NO LONGER A DEPENDENCY. Do not
re-add it."
, with BLAKE3 moved in-tree to break an ndarray → blake3 → ndarray
cycle and drop blake3's unconditional cc build-dep. lance-graph's lock never
caught up; cargo corrected it during the supervisor test runs for this change.

Checked before committing that this reflects ndarray's default branch
(master @ 417f66a3) and not the in-flight ndarray branch this session is also
pushing — a lock refresh pinned to an unmerged sibling would be the wrong thing
to land.

Summary by CodeRabbit

  • Tests
    • Expanded automated supervisor test coverage to include cycle-driver probes and loop-closure scenarios.
    • Increased the test suite from 13 to 43 tests.

…ifiers)

`cycle-driver` is a SEPARATE feature that `supervisor` does not imply, so the
supervisor step -- despite being this crate's own step -- never compiled
`cycle_driver`, the three `probe_ignition*` / `d_ign_b_lenses` test binaries, or
any of #879's loop-closure contract.

Measured on this tree, not inferred:

  --features supervisor                 13 tests
  --features supervisor,cycle-driver    43 tests, 0 failed

The 30 in the gap include `probe_ignition_64k_start_at_full_population` -- the
65,536-owner / 17-sealed headline canonized as
E-64K-1TO1-OWNERS-IS-THE-MAIN-MODEL-1. It runs in 13.75 s and passes; it had
simply never run anywhere but a developer machine.

#891 recorded this gap and deliberately did not touch the workflow. #898 closed
the identical shape for callcenter (`--features query`) but not this one -- same
arc, same defect class, one closed and one left open. One added feature closes
it, and the new invocation is a strict superset of the old, so it cannot lose
coverage.
@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 40a43bc8-f4a5-4a04-a4e1-3641e33c79c9

📥 Commits

Reviewing files that changed from the base of the PR and between 912a41f and c4296d5.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (1)
  • .github/workflows/rust-test.yml

📝 Walkthrough

Walkthrough

The supervisor test workflow now enables the cycle-driver feature with supervisor. This expands test execution from 13 to 43 tests, including cycle-driver probes and loop-closure tests.

Changes

CI test coverage

Layer / File(s) Summary
Enable cycle-driver supervisor tests
.github/workflows/rust-test.yml
The supervisor test step enables both supervisor and cycle-driver features. The workflow now compiles and runs the related cycle-driver and contract tests.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

Suggested reviewers: claude

Poem

A rabbit checks the test-run trail,
Two features hop aboard the rail.
Cycle probes now leap in flight,
Loop closures join the checks tonight.
More green leaves mark the way.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the CI feature change and its expanded supervisor test coverage.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@cursor

cursor Bot commented Aug 5, 2026

Copy link
Copy Markdown

Bugbot couldn't run - usage limit reached

Bugbot is counted against Cursor usage for this user or team, and this run hit a usage or spend limit.

A user or team admin can review and increase usage limits in the Cursor dashboard.

(requestId: serverGenReqId_7cbfa424-7671-421c-a27c-314fcab616f2)

`ndarray` removed `blake3` as a dependency deliberately -- its Cargo.toml now
carries "blake3 -- NO LONGER A DEPENDENCY. Do not re-add it.", with BLAKE3 moved
in-tree to `src/hpc/blake3.rs` to break a `ndarray -> blake3 -> ndarray` cycle
and to shed blake3's unconditional `cc` build-dependency. lance-graph's lockfile
never caught up and still listed it.

Cargo corrected it on its own during the supervisor test runs for the
cycle-driver CI step; this commit just records that correction rather than
leaving the tree dirty.

Verified this reflects ndarray's DEFAULT branch (master @ 417f66a3), not the
in-flight ndarray branch this session is also pushing -- a lock refresh that
pinned lance-graph to an unmerged sibling state would be the wrong thing to
commit, so that was checked before landing it.
@AdaWorldAPI
AdaWorldAPI marked this pull request as ready for review August 5, 2026 18:29
@AdaWorldAPI
AdaWorldAPI merged commit 311f765 into main Aug 5, 2026
4 of 5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants